Ignore:
Timestamp:
Jan 25, 2024, 6:06:27 PM (10 months ago)
Author:
jbclement
Message:

Mars PCM:
Some changes to prepare the introduction of slopes in 1D: in particular, the subroutine "getslopes.F90" and "param_slope.F90" are now inside the module "slope_mod.F90" + Few small cleanings throughout the code.
JBC

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.MARS/libf/phymars/dyn1d/testphys1d.F90

    r3179 r3183  
    255255    ! Compute winds and temperature for next time step
    256256    ! ------------------------------------------------
    257     u(:) = u(:) + dttestphys*du(:)
    258     v(:) = v(:) + dttestphys*dv(:)
    259     temp(:) = temp(:) + dttestphys*dtemp(:)
     257    u = u + dttestphys*du
     258    v = v + dttestphys*dv
     259    temp = temp + dttestphys*dtemp
    260260
    261261    ! Compute pressure for next time step
Note: See TracChangeset for help on using the changeset viewer.