Changeset 2239 for LMDZ5/trunk/libf/dynlmdz_phylmd/iniphysiq.F90
- Timestamp:
- Mar 23, 2015, 8:27:30 AM (10 years ago)
- Location:
- LMDZ5/trunk/libf/dynlmdz_phylmd
- Files:
-
- 1 added
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/dynlmdz_phylmd/iniphysiq.F90
r2233 r2239 148 148 WRITE (lunout, *) ' in the dynamics punjours=', punjours 149 149 WRITE (lunout, *) ' but in the physics RDAY=', rday 150 IF (abs(rday-punjours)>0.01 ) THEN150 IF (abs(rday-punjours)>0.01*punjours) THEN 151 151 ! stop here if the relative difference is more than 1% 152 152 abort_message = 'length of day discrepancy' … … 158 158 WRITE (lunout, *) ' in the dynamics pg=', pg 159 159 WRITE (lunout, *) ' but in the physics RG=', rg 160 IF (abs(rg-pg)>0.01 ) THEN160 IF (abs(rg-pg)>0.01*pg) THEN 161 161 ! stop here if the relative difference is more than 1% 162 162 abort_message = 'gravity discrepancy' … … 168 168 WRITE (lunout, *) ' in the dynamics prad=', prad 169 169 WRITE (lunout, *) ' but in the physics RA=', ra 170 IF (abs(ra-prad)>0.01 ) THEN170 IF (abs(ra-prad)>0.01*prad) THEN 171 171 ! stop here if the relative difference is more than 1% 172 172 abort_message = 'planet radius discrepancy' … … 178 178 WRITE (lunout, *) ' in the dynamics pr=', pr 179 179 WRITE (lunout, *) ' but in the physics RD=', rd 180 IF (abs(rd-pr)>0.01 ) THEN180 IF (abs(rd-pr)>0.01*pr) THEN 181 181 ! stop here if the relative difference is more than 1% 182 182 abort_message = 'reduced gas constant discrepancy' … … 188 188 WRITE (lunout, *) ' in the dynamics pcpp=', pcpp 189 189 WRITE (lunout, *) ' but in the physics RCPD=', rcpd 190 IF (abs(rcpd-pcpp)>0.01 ) THEN190 IF (abs(rcpd-pcpp)>0.01*pcpp) THEN 191 191 ! stop here if the relative difference is more than 1% 192 192 abort_message = 'specific heat discrepancy'
Note: See TracChangeset
for help on using the changeset viewer.