29 lines
863 B
JSON
29 lines
863 B
JSON
{
|
|
"$id": "https://www.istp-cnr.it/gray/schemas/coreprof",
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"title": "Tabulated core plasma profiles",
|
|
"type": "object",
|
|
"properties": {
|
|
"psiNorm": {
|
|
"description": "Normalized poloidal magnetic flux. 0 = magnetic axis, 1 = boundary. Units [-]",
|
|
"$ref": "grid1d",
|
|
"minimum": 0
|
|
},
|
|
"ne": {
|
|
"description": "Electron density. Units [10^19 m^-3]",
|
|
"$ref": "number1d",
|
|
"minimum": 0
|
|
},
|
|
"te": {
|
|
"description": "Electron temperature. Units [keV]",
|
|
"$ref": "number1d",
|
|
"minimum": 0
|
|
},
|
|
"zEff": {
|
|
"description": "Effective ion charge. Units [-]",
|
|
"$ref": "number1d",
|
|
"minimum": 0
|
|
}
|
|
}
|
|
}
|