sellmeier_glass-1.1.0¶
Sellmeier equation for glass
Description
Sellmeier equation for glass.
\[\begin{split}n(\\lambda)^2 = 1 + \\frac{(B1 * \\lambda^2 )}{(\\lambda^2 - C1)} +
\\frac{(B2 * \\lambda^2 )}{(\\lambda^2 - C2)} +
\\frac{(B3 * \\lambda^2 )}{(\\lambda^2 - C3)} \end{split}\]
Outline
Schema Definitions ¶
This node must validate against all of the following:
This type is an object with the following properties:
B_coef
object B coefficients in Sellmeier equation.
This node must validate against any of the following:
- No length restriction
array
C_coef
object C coefficients in Sellmeier equation.
This node must validate against any of the following:
- No length restriction
array
Original Schema ¶
%YAML 1.1
---
$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
id: "http://stsci.edu/schemas/gwcs/sellmeier_glass-1.1.0"
title: Sellmeier equation for glass
description: |
Sellmeier equation for glass.
$$ n(\\lambda)^2 = 1 + \\frac{(B1 * \\lambda^2 )}{(\\lambda^2 - C1)} +
\\frac{(B2 * \\lambda^2 )}{(\\lambda^2 - C2)} +
\\frac{(B3 * \\lambda^2 )}{(\\lambda^2 - C3)} $$
allOf:
- $ref: "http://stsci.edu/schemas/asdf/transform/transform-1.2.0"
- type: object
properties:
B_coef:
description: |
B coefficients in Sellmeier equation.
anyOf:
- type: array
- $ref: "http://stsci.edu/schemas/asdf/core/ndarray-1.0.0"
items:
type: number
minItems: 3
maxItems: 3
C_coef:
description: |
C coefficients in Sellmeier equation.
anyOf:
- type: array
- $ref: "http://stsci.edu/schemas/asdf/core/ndarray-1.0.0"
items:
type: number
minItems: 3
maxItems: 3
...