Commit 8e79f472e7ce996b6a0ca9067ea68af35cad4cca
1 parent
99025a7c
Exists in
rhitier-dev
Set all neptune amda parameters
Showing
2 changed files
with
50 additions
and
8 deletions
Show diff stats
config.yml
... | ... | @@ -592,22 +592,64 @@ targets: |
592 | 592 | title: 'Neptune' |
593 | 593 | orbit: |
594 | 594 | models: |
595 | - - slug: 'neptune_orb_all' | |
595 | + - slug: 'neptune-orb-all' | |
596 | + parameters: | |
597 | + xy_hee: 'xyz_neptune_hee' | |
596 | 598 | semimajor: 30.06896348 |
597 | 599 | semiminor: 30.06785516 |
598 | 600 | models: |
599 | 601 | om: |
600 | - - slug: 'tao_nep_sw' | |
602 | + - slug: 'tao-nep-sw' | |
603 | + parameters: | |
604 | + dens: 'nep_sw_n' | |
605 | + xy_v: 'nep_sw_v' | |
606 | + temp: 'nep_sw_t' | |
607 | + pdyn: 'nep_sw_pdyn' | |
608 | + btan: 'nep_sw_b' | |
609 | + brad: 'nep_sw_bx' | |
610 | + atse: 'nep_sw_da' | |
601 | 611 | art: |
602 | - - slug: 'tao_nep_swrt' | |
612 | + - slug: 'tao-nep-swrt' | |
613 | + parameters: | |
614 | + dens: 'nep_swrt_n' | |
615 | + xy_v: 'nep_swrt_v' | |
616 | + temp: 'nep_swrt_t' | |
617 | + pdyn: 'nep_swrt_pdyn' | |
618 | + btan: 'nep_swrt_b' | |
619 | + brad: 'nep_swrt_bx' | |
620 | + atse: 'nep_swrt_da' | |
603 | 621 | dsc: |
604 | - - slug: 'tao_nep_dsc' | |
622 | + - slug: 'tao-nep-dsc' | |
623 | + parameters: | |
624 | + dens: 'nep_dsc_n' | |
625 | + xy_v: 'nep_dsc_v' | |
626 | + temp: 'nep_dsc_t' | |
627 | + pdyn: 'nep_dsc_pdyn' | |
628 | + btan: 'nep_dsc_b' | |
629 | + brad: 'nep_dsc_bx' | |
630 | + atse: 'nep_dsc_da' | |
605 | 631 | solo: |
606 | - - slug: 'tao_nep_solo' | |
632 | + - slug: 'tao-nep-solo' | |
607 | 633 | sa: |
608 | - - slug: 'tao_nep_sta' | |
634 | + - slug: 'tao-nep-sta' | |
635 | + parameters: | |
636 | + dens: 'nep_sta_n' | |
637 | + xy_v: 'nep_sta_v' | |
638 | + temp: 'nep_sta_t' | |
639 | + pdyn: 'nep_sta_pdyn' | |
640 | + btan: 'nep_sta_b' | |
641 | + brad: 'nep_sta_bx' | |
642 | + atse: 'nep_sta_da' | |
609 | 643 | sb: |
610 | - - slug: 'tao_nep_stb' | |
644 | + - slug: 'tao-nep-stb' | |
645 | + parameters: | |
646 | + dens: 'nep_stb_n' | |
647 | + xy_v: 'nep_stb_v' | |
648 | + temp: 'nep_stb_t' | |
649 | + pdyn: 'nep_stb_pdyn' | |
650 | + btan: 'nep_stb_b' | |
651 | + brad: 'nep_stb_bx' | |
652 | + atse: 'nep_stb_da' | |
611 | 653 | locked: false |
612 | 654 | default: false |
613 | 655 | # Bepi Colombo source slug, put it just before the Bepi Colombo data slug | ... | ... |
web/run.py
... | ... | @@ -981,7 +981,7 @@ def generate_csv_file_if_needed(target_slug, input_slug, |
981 | 981 | break |
982 | 982 | |
983 | 983 | # temporary switch while migrating each target to spz |
984 | - if target_slug in ['mercury', 'venus', 'mars', 'earth', 'jupiter', 'saturn', 'uranus']: | |
984 | + if target_slug in ['mercury', 'venus', 'mars', 'earth', 'jupiter', 'saturn', 'uranus', 'neptune']: | |
985 | 985 | csv_generator = generate_csv_contents_spz |
986 | 986 | else: |
987 | 987 | csv_generator = generate_csv_contents | ... | ... |