Changeset 3399 for trunk/LMDZ.COMMON


Ignore:
Timestamp:
Jul 24, 2024, 12:20:23 AM (4 months ago)
Author:
jbclement
Message:

PEM:
Small corection for the 1D related to r3386 and r3369 + Making the computation of maximum number of iterations due to orbital variations more robust.
JBC

Location:
trunk/LMDZ.COMMON/libf/evolution
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.COMMON/libf/evolution/changelog.txt

    r3394 r3399  
    396396Addition of the possiblity to launch the 1D model in the launching script + correction of small errors.
    397397
    398 ==08/07/2024 == JBC
     398== 08/07/2024 == JBC
    399399Updates and improvements related to the last modifications of the launching script.
     400
     401== 24/07/2024 == JBC
     402Small corection for the 1D related to r3386 and r3369 + Making the computation of maximum number of iterations due to orbital variations more robust.
  • trunk/LMDZ.COMMON/libf/evolution/orbit_param_criterion_mod.F90

    r3206 r3399  
    207207
    208208year_iter_max = min(max_obl_iter,max_ecc_iter,max_lsp_iter)
     209year_iter_max = max(year_iter_max,1)
    209210write(*,*) 'So the max. number of iterations for the orbital criteria =', year_iter_max
    210211
  • trunk/LMDZ.COMMON/libf/evolution/pem.F90

    r3394 r3399  
    355355    allocate(longitude(ngrid),latitude(ngrid),cell_area(ngrid))
    356356#else
    357     day_step = steps_per_sol
    358357    allocate(q(1,llm,nqtot))
    359358    allocate(longitude(1),latitude(1),cell_area(1))
     
    377376    ps(2) = ps(1)
    378377    nsplit_phys = 1
     378    day_step = steps_per_sol
    379379#endif
    380380
Note: See TracChangeset for help on using the changeset viewer.