Skip to content

Commit

Permalink
Merge pull request #384 from asam-ev/370-publicreview-questions-about…
Browse files Browse the repository at this point in the history
…-832-electromagnetic-properties

Add relative to permittivity and permeability
  • Loading branch information
ClemensLinnhoff authored Mar 6, 2025
2 parents b119197 + b96327a commit 2af671f
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 12 deletions.
18 changes: 12 additions & 6 deletions content/09_annexes/checker-rules.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -174,13 +174,13 @@ Description:: A temperature in Kelvin (K) shall not be below 0.

UID:: asam.net:xom-mat:1.0.0:xompt.real_part_ior_valid_range

Description:: The real part of index of refraction (refractive index n) shall not be below 0.
Description:: The real part of the index of refraction (refractive index n) shall not be below 0.

==== imaginary_part_ior_valid_range

UID:: asam.net:xom-mat:1.0.0:xompt.imaginary_part_ior_valid_range

Description:: The imaginary part of index (extinction coefficient k) of refraction shall not be below 0 (= perfect transparent material).
Description:: The imaginary part of the index (extinction coefficient k) of refraction shall not be below 0 (= perfect transparent material).

==== humidity_valid_range

Expand All @@ -192,19 +192,25 @@ Description:: The humidity in percent (%) shall be within the range of 0 to 100.

UID:: asam.net:xom-mat:1.0.0:xompt.real_part_permeability_valid_range

Description:: The real part of permeability shall be within the range of 1.256637e-06 to 1.256637 (µ~0~ to µ~0~ x 10e06).
Description:: The real part of the relative permeability shall not be below 1.

==== imaginary_part_permeability_valid_range

UID:: asam.net:xom-mat:1.0.0:xompt.real_part_permeability_valid_range
UID:: asam.net:xom-mat:1.0.0:xompt.imaginary_part_permeability_valid_range

Description:: The imaginary part of the relative permeability shall not be below 0.

==== real_part_permittivity_valid_range

UID:: asam.net:xom-mat:1.0.0:xompt.real_part_permittivity_valid_range

Description:: The imaginary part of permeability shall not be below 0.
Description:: The real part of the relative permittivity shall not be below 1.

==== imaginary_part_permittivity_valid_range

UID:: asam.net:xom-mat:1.0.0:xompt.imaginary_part_permitivity_valid_range

Description:: The imaginary part of permittivity shall not be below 0.
Description:: The imaginary part of the relative permittivity shall not be below 0.

==== incident_elevation_angle_valid_range

Expand Down
8 changes: 4 additions & 4 deletions schemas/material_emp_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,28 +103,28 @@
"number",
"null"
],
"description": "Real part of complex permeability of material."
"description": "Real part of complex relative permeability of material, which is \\(\\mu_{\\textrm{r}}^{'}\\) in \\(\\mu_r = \\mu_{\\textrm{r}}^{'} - j \\mu_{\\textrm{r}}^{''}\\)."
},
{
"type": [
"number",
"null"
],
"description": "Imaginary part of complex permeability of material."
"description": "Imaginary part of complex relative permeability of material, which is \\(\\mu_{\\textrm{r}}^{''}\\) in \\(\\mu_{\\textrm{r}} = \\mu_{\\textrm{r}}^{'} - j \\mu_{\\textrm{r}}^{''}\\)."
},
{
"type": [
"number",
"null"
],
"description": "Real part of complex permittivity of material."
"description": "Real part of complex relative permittivity of material, which is \\(\\epsilon_{\\textrm{r}}^{'}\\) in \\(\\epsilon_{\\textrm{r}} = \\epsilon_{\\textrm{r}}^{'} - j \\epsilon_{\\textrm{r}}^{''}\\)."
},
{
"type": [
"number",
"null"
],
"description": "Imaginary part of complex permittivity of material."
"description": "Imaginary part of complex relative permittivity of material, which is \\(\\epsilon_{\\textrm{r}}^{''}\\) in \\(\\epsilon_{\\textrm{r}} = \\epsilon_{\\textrm{r}}^{'} - j \\epsilon_{\\textrm{r}}^{''}\\)."
}
],
"minItems": 7,
Expand Down
4 changes: 2 additions & 2 deletions schemas/material_optical_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,14 +96,14 @@
"number",
"null"
],
"description": "Real part of index of refraction of material."
"description": "Real part of index of refraction of material, which is \\(n^{'}\\) in \\(n = n^{'} - j \\kappa\\)."
},
{
"type": [
"number",
"null"
],
"description": "Imaginary part of index of refraction of material."
"description": "Imaginary part of index of refraction of material, which is \\(\\kappa\\) in \\(n = n^{'} - j \\kappa\\)."
}
],
"minItems": 4,
Expand Down

0 comments on commit 2af671f

Please sign in to comment.