Changeset 3514
- Timestamp:
- Nov 13, 2024, 11:29:52 AM (8 days ago)
- Location:
- trunk/LMDZ.COMMON/libf/evolution
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/changelog.txt
r3512 r3514 480 480 == 12/11/2024 == JBC 481 481 Few corrections related to r3498 (time step from integer to real) and r3493 (Norbert Schorghofer's subroutines for dynamic ice table) in order to make the code work properly. 482 483 == 13/11/2024 == JBC 484 Small correction for the launching script following the r3498 (time step from integer to real). -
trunk/LMDZ.COMMON/libf/evolution/deftank/lib_launchPEM.sh
r3498 r3514 168 168 ii=$3 169 169 fi 170 if [ $ i_myear -lt $n_myear]; then170 if [ $(echo "$i_myear < $n_myear" | bc -l) ]; then 171 171 echo "Run PCM $iPCM: call $ii/$2..." 172 172 if [ $1 -eq 0 ]; then # Mode: processing scripts … … 193 193 fi 194 194 for ((i = $ii; i <= $2; i++)); do 195 if [ $ i_myear -lt $n_myear]; then195 if [ $(echo "$i_myear < $n_myear" | bc -l) ]; then 196 196 echo "Run PCM $iPCM: call $i/$2..." 197 197 if [ $1 -eq 0 ]; then # Mode: processing scripts … … 219 219 # arg1: launching mode 220 220 submitPEM() { 221 if [ $ i_myear -lt $n_myear]; then221 if [ $(echo "$i_myear < $n_myear" | bc -l) ]; then 222 222 echo "Run PEM $iPEM" 223 223 if [ $1 -eq 0 ]; then # Mode: processing scripts … … 248 248 249 249 # PEM run 250 if [ $ i_myear -lt $n_myear]; then250 if [ $(echo "$i_myear < $n_myear" | bc -l) ]; then 251 251 echo "Run PEM $iPEM" 252 252 if [ $1 -eq 0 ]; then # Mode: processing scripts
Note: See TracChangeset
for help on using the changeset viewer.