Changeset 3040 for trunk/LMDZ.COMMON/libf/evolution
- Timestamp:
- Sep 12, 2023, 11:41:22 AM (16 months ago)
- Location:
- trunk/LMDZ.COMMON/libf/evolution
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/orbit_param_criterion_mod.F90
r3039 r3040 22 22 #endif 23 23 #ifndef CPP_STD 24 use planete_h, only: e_elips, obliquit, timeperi24 use planete_h, only: e_elips, obliquit, lsperi 25 25 #else 26 use planete_mod, only: e_elips, obliquit, timeperi26 use planete_mod, only: e_elips, obliquit, lsperi 27 27 #endif 28 28 use time_evol_mod, only: year_bp_ini, var_obl, var_ecc, var_lsp, convert_years … … 57 57 ! 0. Initializations 58 58 ! ********************************************************************** 59 Year = year_bp_ini + i_myear 60 Lsp = modulo(-timeperi*180./pi,360.)! We convert in degree59 Year = year_bp_ini + i_myear ! We compute the current year 60 Lsp = lsperi*180./pi ! We convert in degree 61 61 62 62 call ini_lask_param_mod ! Allocation of variables -
trunk/LMDZ.COMMON/libf/evolution/recomp_orb_param_mod.F90
r3039 r3040 15 15 #ifndef CPP_STD 16 16 use comconst_mod, only: pi 17 use planete_h, only: e_elips, obliquit, timeperi, periheli, aphelie, p_elips, peri_day, year_day17 use planete_h, only: e_elips, obliquit, lsperi, periheli, aphelie, p_elips, peri_day, year_day 18 18 #else 19 use planete_mod, only: e_elips, obliquit, timeperi, periastr, apoastr, p_elips, peri_day, year_day19 use planete_mod, only: e_elips, obliquit, lsperi, periastr, apoastr, p_elips, peri_day, year_day 20 20 use comcstfi_mod, only: pi 21 21 #endif … … 56 56 #endif 57 57 58 Year = year_bp_ini + i_myear 59 Lsp = modulo(-timeperi*180./pi,360.)! We convert in degree58 Year = year_bp_ini + i_myear ! We compute the current year 59 Lsp = lsperi*180./pi ! We convert in degree 60 60 61 61 write(*,*) 'recomp_orb_param, Old year =', Year - year_iter … … 100 100 enddo 101 101 halfaxe = 227.94 102 timeperi= Lsp*pi/180.102 Lsp = Lsp*pi/180. 103 103 periheli = halfaxe*(1 - e_elips) 104 104 aphelie = halfaxe*(1 + e_elips) … … 107 107 108 108 #ifndef CPP_STD 109 call call_dayperi( timeperi,e_elips,peri_day,year_day)109 call call_dayperi(Lsp,e_elips,peri_day,year_day) 110 110 #endif 111 111
Note: See TracChangeset
for help on using the changeset viewer.