Changeset 5082 for LMDZ6/branches/Amaury_dev/libf/dyn3dmem/friction_loc.F
- Timestamp:
- Jul 19, 2024, 5:41:58 PM (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/Amaury_dev/libf/dyn3dmem/friction_loc.F
r2597 r5082 56 56 ! set friction type 57 57 call getin("friction_type",friction_type) 58 if ((friction_type .lt.0).or.(friction_type.gt.1)) then58 if ((friction_type<0).or.(friction_type>1)) then 59 59 abort_message="wrong friction type" 60 60 write(lunout,*)'Friction: wrong friction type',friction_type … … 65 65 !$OMP END SINGLE COPYPRIVATE(friction_type,firstcall) 66 66 67 if (friction_type .eq.0) then ! friction on first layer only67 if (friction_type==0) then ! friction on first layer only 68 68 !$OMP SINGLE 69 69 c calcul des composantes au carre du vent naturel … … 172 172 endif ! of if (friction_type.eq.0) 173 173 174 if (friction_type .eq.1) then174 if (friction_type==1) then 175 175 ! for ucov() 176 176 jjb=jj_begin
Note: See TracChangeset
for help on using the changeset viewer.