Changeset 1058 for XIOS/dev


Ignore:
Timestamp:
02/21/17 10:01:06 (7 years ago)
Author:
yushan
Message:

test with test_complete OK

Location:
XIOS/dev/branch_yushan
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • XIOS/dev/branch_yushan/arch/arch-GCC_LINUX.env

    r1053 r1058  
    1 module unload netcdf 
    2 module unload hdf5 
    3   
    41 
    52export HDF5_INC_DIR=$HOME/lib/hdf5/include 
  • XIOS/dev/branch_yushan/bld.cfg

    r1037 r1058  
    3636#test_remap.exe 
    3737#bld::target test_new_features.exe test_unstruct_complete.exe  
    38 bld::target test_client.exe #test_complete.exe 
     38bld::target test_client.exe test_complete.exe 
    3939bld::exe_dep 
    4040 
  • XIOS/dev/branch_yushan/inputs/COMPLETE/context_atmosphere.xml

    r787 r1058  
    88  </field_definition> 
    99 
    10   <file_definition type="multiple_file" par_access="collective" output_freq="6h" sync_freq="6h" output_level="10" enabled=".TRUE."> 
     10  <file_definition type="one_file" par_access="collective" output_freq="6h" sync_freq="6h" output_level="10" enabled=".TRUE."> 
    1111    <file id="output_atmosphere" name="output_atmosphere"> 
    1212      <field field_ref="field_A_atm" /> 
  • XIOS/dev/branch_yushan/inputs/COMPLETE/context_surface.xml

    r562 r1058  
    1212  </field_definition> 
    1313 
    14   <file_definition type="multiple_file" par_access="collective" output_level="10" enabled=".TRUE."> 
     14  <file_definition type="one_file" par_access="collective" output_level="10" enabled=".TRUE."> 
    1515    <file id="output_surface" name="output_surface_6h" output_freq="6h"> 
    1616      <field field_ref="field_A_srf"> 
  • XIOS/dev/branch_yushan/src/test/test_complete.f90

    r787 r1058  
    128128  CALL xios_get_domain_attr("domain_atm",ni=ni,lonvalue_2D=lonvalue) 
    129129 
    130   PRINT *,"ni",ni 
    131   PRINT *,"lonvalue",lonvalue; 
     130  !PRINT *,"ni",ni 
     131  !PRINT *,"lonvalue",lonvalue; 
    132132 
    133133!!! Fin de la definition du contexte 
    134134 
    135135  CALL xios_close_context_definition() 
     136 
     137  print *, "xios_close_context_definition(atmosphere)" 
    136138 
    137139!!! Test des valeurs des champs/fichiers 
     
    208210  CALL xios_get_domain_attr("domain_srf",ni=ni,lonvalue_2D=lonvalue) 
    209211 
    210   PRINT *,"ni",ni 
    211   PRINT *,"lonvalue",lonvalue ; 
     212  !PRINT *,"ni",ni 
     213  !PRINT *,"lonvalue",lonvalue ; 
    212214 
    213215!!! Fin de la definition du contexte SRF 
    214216 
    215217  CALL xios_close_context_definition() 
     218 
     219  print *, "xios_close_context_definition(surface)"  
    216220 
    217221 
     
    220224!#################################################################################### 
    221225 
    222     DO ts=1,24*10 
     226    !DO ts=1,24*10 
     227    DO ts=1,24 
    223228 
    224229      CALL xios_get_handle("atmosphere",ctx_hdl) 
     
    247252 
    248253      CALL wait_us(5000) ; 
     254 
     255 
    249256    ENDDO 
     257 
     258    print *, "end temporal loop" 
    250259 
    251260!#################################################################################### 
     
    255264!!! Fin des contextes 
    256265 
     266    print *, "start : xios_context_finalize(surface)" 
     267 
     268    CALL xios_get_handle("surface",ctx_hdl)  
     269    print *, "xios_get_handle OK" 
     270    CALL xios_set_current_context(ctx_hdl) 
     271    print *, "xios_set_current_context OK" 
    257272    CALL xios_context_finalize() 
     273 
     274    print *, "xios_context_finalize(surface)"  
     275 
    258276    CALL xios_get_handle("atmosphere",ctx_hdl) 
    259277    CALL xios_set_current_context(ctx_hdl) 
    260278    CALL xios_context_finalize() 
    261279 
     280    print *, "xios_context_finalize(atmosphere)" 
     281 
    262282    DEALLOCATE(lon, lat, field_A_atm, lonvalue) 
    263283    DEALLOCATE(kindex, field_A_srf) 
     
    269289    CALL xios_finalize() 
    270290 
     291    print *, "xios_finalize" 
     292 
    271293    CALL MPI_FINALIZE(ierr) 
    272294 
Note: See TracChangeset for help on using the changeset viewer.