plummer1d-1.0.0

Two dimensional Plummer model.

Description

One dimensional Plummer density profile model.

Outline

Schema Definitions

This node must validate against all of the following:

  • This type is an object with the following properties:

    • mass

      objectRequired

      Total mass of cluster.

      This node must validate against any of the following:

    • r_plum

      objectRequired

      Scale parameter which sets the size of the cluster core.

      This node must validate against any of the following:

Examples

\[\rho(r)=\frac{3*15.0}{4\pi *5.5^3}(1+\frac{r^2}{5.5^2})^{-5/2}\]
!transform/plummer1d-1.0.0 {mass: 15.0, r_plum: 5.5}

Original Schema

%YAML 1.1
---
$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
id: "http://stsci.edu/schemas/asdf/transform/plummer1d-1.0.0"
title: >
  Two dimensional Plummer model.

description: >
  One dimensional Plummer density profile model.

examples:
  -
    - $$\rho(r)=\frac{3*15.0}{4\pi *5.5^3}(1+\frac{r^2}{5.5^2})^{-5/2}$$
    - |
      !transform/plummer1d-1.0.0 {mass: 15.0, r_plum: 5.5}

allOf:
  - $ref: "transform-1.2.0"
  - type: object
    properties:
      mass:
        anyOf:
          - $ref: "../unit/quantity-1.1.0"
          - type: number
        description: Total mass of cluster.
      r_plum:
        anyOf:
          - $ref: "../unit/quantity-1.1.0"
          - type: number
        description: Scale parameter which sets the size of the cluster core.

    required: ['mass', 'r_plum']
...