Changeset 5082 for LMDZ6/branches/Amaury_dev/libf/phy_common
- Timestamp:
- Jul 19, 2024, 5:41:58 PM (6 months ago)
- Location:
- LMDZ6/branches/Amaury_dev/libf/phy_common
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/Amaury_dev/libf/phy_common/abort_physic.F90
r4600 r5082 36 36 write(lunout,*) 'Stopping in ', modname 37 37 write(lunout,*) 'Reason = ',message 38 if (ierr .eq.0) then38 if (ierr == 0) then 39 39 write(lunout,*) 'Everything is cool' 40 40 if (using_mpi) then -
LMDZ6/branches/Amaury_dev/libf/phy_common/mod_phys_lmdz_mpi_data.F90
r4602 r5082 65 65 is_using_mpi = using_mpi 66 66 67 if ((nbp_lon .eq.1).and.(nbp_lat.eq.1)) then ! running 1D column model67 if ((nbp_lon==1).and.(nbp_lat==1)) then ! running 1D column model 68 68 klon_glo=1 69 69 else -
LMDZ6/branches/Amaury_dev/libf/phy_common/print_control_mod.F90
r3981 r5082 44 44 45 45 IF ( alert_first_call) then 46 IF ( alarm_file .ne.lunout ) THEN46 IF ( alarm_file /= lunout ) THEN 47 47 OPEN(unit = alarm_file, file = "ALERTES.txt") 48 48 ENDIF
Note: See TracChangeset
for help on using the changeset viewer.