Changeset 3287 for trunk/LMDZ.COMMON/libf/evolution
- Timestamp:
- Mar 29, 2024, 3:22:49 PM (8 months ago)
- Location:
- trunk/LMDZ.COMMON/libf/evolution
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/changelog.txt
r3286 r3287 258 258 - several subroutines to manipulate the 'layering' and 'stratum' (initilize, finalize, display, modify, etc); 259 259 - subroutines of the algorithm to make the layering evolve according to the input tendencies (new layer, change of content in a layer, creation of dust lag layer, etc). 260 261 == 29/03/2024 == JBC 262 - Small correction to make the 3D PEM be able to compile. 263 - Improvement of "launch_pem.sh": a file "kill_launch_pem.sh" is now automatically created which allows the user to kill the process of the launching script in case. -
trunk/LMDZ.COMMON/libf/evolution/deftank/launch_pem.sh
r3215 r3287 6 6 echo "The launching script is starting!" 7 7 echo "The output file is \"loglaunch.txt\"." 8 if [ "$1" = "bg" ]; then 8 9 # Re-spawn the script as a background process and create a bash file to kill it in case 10 if [ "$1" = "bg" ]; then 9 11 date 12 echo '#!/bin/bash' > kill_launch_pem.sh 13 echo 'kill' $$ >> kill_launch_pem.sh 14 chmod +x kill_launch_pem.sh 10 15 else 11 16 nohup "$0" bg > loglaunch.txt 2>&1 & -
trunk/LMDZ.COMMON/libf/evolution/pem.F90
r3264 r3287 82 82 use mod_phys_lmdz_para, only: is_parallel, is_sequential, is_mpi_root, is_omp_root, is_master 83 83 use planete_h, only: aphelie, periheli, year_day, peri_day, obliquit, iniorbit 84 use comcstfi_h, only: pi, rad, g, mugaz, r84 use comcstfi_h, only: pi, rad, g, cpp, mugaz, r 85 85 use surfini_mod, only: surfini 86 86 #else … … 91 91 use aerosol_mod, only: iniaerosol 92 92 use planete_mod, only: apoastr, periastr, year_day, peri_day, obliquit 93 use comcstfi_mod, only: pi, rad, g, mugaz, r93 use comcstfi_mod, only: pi, rad, g, cpp, mugaz, r 94 94 #endif 95 95
Note: See TracChangeset
for help on using the changeset viewer.