Changeset 2300 for trunk/LMDZ.GENERIC/libf
- Timestamp:
- Apr 27, 2020, 4:52:09 PM (5 years ago)
- Location:
- trunk/LMDZ.GENERIC/libf/phystd
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/libf/phystd/callkeys_mod.F90
r2299 r2300 140 140 real,save :: epflux_max 141 141 !$OMP THREADPRIVATE(epflux_max) 142 142 real,save :: noseason_day 143 !$OMP THREADPRIVATE(noseason_day) 144 143 145 logical,save :: iscallphys=.false.!existence of callphys.def 144 146 !$OMP THREADPRIVATE(iscallphys) -
trunk/LMDZ.GENERIC/libf/phystd/inifis_mod.F90
r2299 r2300 150 150 call getin_p("season",season) 151 151 write(*,*) " season = ",season 152 153 write(*,*) "No seasonal cycle: initial day to lock the run during restart" 154 noseason_day=0.0 ! default value 155 call getin_p("noseason_day",noseason_day) 156 write(*,*) "noseason_day=", noseason_day 152 157 153 158 write(*,*) "Tidally resonant rotation ?" -
trunk/LMDZ.GENERIC/libf/phystd/physiq_mod.F90
r2299 r2300 733 733 call stellarlong(zday,zls) 734 734 else 735 call stellarlong( float(day_ini),zls)735 call stellarlong(noseason_day,zls) 736 736 end if 737 737
Note: See TracChangeset
for help on using the changeset viewer.