CREME-96 Sol. Min (1977)
Model API name: creme-96-gcr
The GCR CREME96 model implemented in SPENVIS is for the solar-minimum GCR environment and corresponds with the GCR maximum last observed in 1986-87. The model is based on the model of Nymmik et al. (1992) and includes anomalous cosmic ray fluxes (visible for He, N, O and Ne around 10 MeV/nleon) derived from SAMPEX results.
Version: v1
Model developer:
Model provision:
External Input: trajectory
Input | Value |
---|---|
Model name |
sapre
sapre_upload
|
trajectory
|
Model result name | trajectory |
Quantity | trajectory |
Input group: gcr / multiplicity: one
Input | Description | Valid values | Default | Quantity |
---|---|---|---|---|
lowestIonSpecies | Lowest ion species to include. |
min: 1 max: 92 note: Must be < highestIonSpecies |
1 | number |
highestIonSpecies | Highest ion species to include. |
min: 1 max: 92 note: Must be > lowestIonSpecies |
92 | number |
distanceFromSun | Distance from the Sun (AU). |
min: 0 max: unbounded |
1.0 | length |
MQ | MQ |
min: 0 max: unbounded |
9677 | number |
useGeomagneticShielding | Include geomagnetic shielding |
0=No 1=Yes |
0 | number |
arrivalDirection |
Specify arrival direction (only when using geomagnetic shielding).
Used if useGeomagneticShielding == 1 |
0=All directions 1=Vertical only |
0 | number |
magnetosphereState |
State of the magnetosphere (when using geomagnetic shielding).
Used if useGeomagneticShielding == 1 |
0=Quiet 1=Stormy |
0 | number |
method |
Method (only when using geomagnetic shielding).
Used if useGeomagneticShielding == 1 |
0=Stormer with eccentric dipole 1=Smart and Shea (1967) with IGRF 2=Stormer upgrade |
0 | number |
magneticFieldMoment |
Magnetic field moment.
Only when using geomagnetic shielding. Used if useGeomagneticShielding == 1 |
0=McIlwain 1=Unchanged -1=CREME-86 -2=CREME-96 |
1 | number |
|
None
# coding=utf-8
from nom_client.nom_client import NoMClient
nom_client = NoMClient("CREME-96 GCR example")
sapre_model_gto = nom_client.get_model('sapre')
sapre_model_gto.set_params(orbitType="GEN")
sapre_gto_result = nom_client.run_model(sapre_model_gto)
print(sapre_gto_result)
creme_96_gcr_model = nom_client.get_model('creme-96-gcr')
creme_96_gcr_model.set_external_input(external_input_name="trajectory", external_input=sapre_gto_result)
creme_96_gcr_results = nom_client.run_model(creme_96_gcr_model)
print(creme_96_gcr_results)
No references