Ignore:
Timestamp:
Feb 9, 2024, 11:34:50 AM (10 months ago)
Author:
jbclement
Message:

PEM:

  • Addition in the deftank of a bash script "modify_startfi_var.sh" to modify the value of a variable in a "startfi.nc".
  • Small corrections due to r3206.

JBC

Location:
trunk/LMDZ.COMMON/libf/evolution
Files:
1 added
7 edited

Legend:

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

    r3206 r3210  
    232232== 08/02/2024 == JBC
    233233Cleanings of unused variables/arguments and bad type conversions.
     234
     235== 09/02/2024 == JBC
     236- Addition in the deftank of a bash script "modify_startfi_var.sh" to modify the value of a variable in a "startfi.nc".
     237- Small corrections due to r3206.
  • trunk/LMDZ.COMMON/libf/evolution/conf_pem.F90

    r3206 r3210  
    6363year_bp_ini = 0.
    6464call getin('year_earth_bp_ini',year_earth_bp_ini)
    65 year_bp_ini = integer(year_earth_bp_ini/convert_years)
     65year_bp_ini = int(year_earth_bp_ini/convert_years)
    6666
    6767var_obl = .true.
  • trunk/LMDZ.COMMON/libf/evolution/deftank/concat_diagpem.sh

    r3145 r3210  
    1818output_file=($directory/$output_file)
    1919
     20
     21################################################################
    2022# Checking if everything is ok
    2123if [ ! -d "$directory" ]; then
  • trunk/LMDZ.COMMON/libf/evolution/deftank/inipem_orbit.sh

    r3181 r3210  
    1111orb_data="obl_ecc_lsp.asc"
    1212
     13
     14######################################################################
    1315# Check if files necessary for the script exist
    1416if [ ! -f "$orb_data" ]; then
  • trunk/LMDZ.COMMON/libf/evolution/deftank/launch_pem.sh

    r3182 r3210  
    2121LC_NUMERIC=en_US.UTF-8
    2222
     23
     24#####################################################################
    2325#---------- Modify here the number of years to be simulated ------------
    2426## set the number of years, either Martian or Earth years:
     
    3739## fill in the name of executable for reshape XIOS:
    3840exeReshape="reshape_XIOS_output_64x48x29_phymars_seq.e"
     41#####################################################################
     42
    3943
    4044#------ Check if files/directories necessary for the script exist ------
  • trunk/LMDZ.COMMON/libf/evolution/deftank/modify_startfi_orbit.sh

    r3145 r3210  
    44######################################################################
    55
    6 # Name of the file to be modified
     6# Name of the file
    77name_file="startfi.nc"
    88
     
    1414
    1515
     16######################################################################
    1617# Calculate modified values
    1718if [ ! -f "$name_file" ]; then
     
    4849# Update the netCDF file
    4950# controle(15) = periheli ! min. Sun-Mars distance (Mkm)  ̃206.66
    50 # controle(16) = aphelie  ! max. SUn-Mars distance (Mkm)  ̃249.22
     51# controle(16) = aphelie  ! max. Sun-Mars distance (Mkm)  ̃249.22
    5152# controle(17) = peri_day ! date of perihelion (sols since N. spring)
    5253# controle(18) = obliquit ! Obliquity of the planet (deg)  ̃23.98
  • trunk/LMDZ.COMMON/libf/evolution/read_data_PCM_mod.F90

    r3206 r3210  
    5555!=======================================================================
    5656! Local Variables
    57 integer                         :: i, j, t                                                       ! loop variables
     57integer                         :: i, j, l, t                                                    ! loop variables
    5858real                            :: A, B, mmean                                                   ! Molar Mass of co2 and no co2, A;B intermediate variables to compute the mean molar mass of the layer
    5959integer                         :: islope                                                        ! loop for variables
Note: See TracChangeset for help on using the changeset viewer.