Ignore:
Timestamp:
01/09/19 17:09:26 (6 years ago)
Author:
aquiquet
Message:

Sealevel is now treated as a 2D variable (sealevel_2d while sealevel remains the eustatic sea level), results should remain identical as sealevel_2d is equal to sealevel in this revision.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SOURCES/Draggings_modules/dragging_prescr_beta_buoyency_mod.f90

    r70 r237  
    500500 
    501501 
    502     where ( sealevel-B1(:,:).le.0.)             ! socle au dessus du niveau des mers 
     502    where ( sealevel_2d(:,:)-B1(:,:).le.0.)             ! socle au dessus du niveau des mers 
    503503       H_buoy(:,:) = H1(:,:) 
    504504 
    505505    elsewhere 
    506        H_buoy(:,:) = H1(:,:)-row/ro*(sealevel-B1(:,:)) 
     506       H_buoy(:,:) = H1(:,:)-row/ro*(sealevel_2d(:,:)-B1(:,:)) 
    507507        
    508508    end where 
Note: See TracChangeset for help on using the changeset viewer.