Changeset 178


Ignore:
Timestamp:
12/13/13 18:32:35 (11 years ago)
Author:
mtort
Message:

Fixed no-physics message

File:
1 edited

Legend:

Unmodified
Added
Removed
  • codes/icosagcm/trunk/src/physics.f90

    r170 r178  
    77 
    88  SUBROUTINE init_physics 
     9    USE mpipara 
     10    USE etat0_mod 
    911    USE icosa 
    1012    USE physics_dcmip_mod,init_physics_dcmip=>init_physics 
     
    1214    IMPLICIT NONE 
    1315 
     16    physics_type='automatic' 
    1417    CALL getin("physics",physics_type) 
    1518 
    1619    SELECT CASE(TRIM(physics_type)) 
    1720    CASE ('automatic') 
     21       etat0_type='jablonowsky06' 
     22       CALL getin("etat0",etat0_type) 
     23       SELECT CASE(TRIM(etat0_type)) 
     24       CASE('held_suarez') 
     25       CASE DEFAULT 
     26          IF(is_mpi_root) PRINT*,"NO PHYSICAL PACKAGE USED" 
     27       END SELECT 
     28 
    1829 
    1930    CASE ('dcmip') 
     
    5667          !     CALL transfert_request(f_ue,req_e1_vect) 
    5768          CALL held_suarez(f_ps,f_theta_rhodz,f_ue)  
    58        CASE DEFAULT 
    59           PRINT*,"NO PHYSICAL PACAKAGE USED" ! FIXME MPI 
    6069       END SELECT 
    6170 
Note: See TracChangeset for help on using the changeset viewer.