Changes between Version 9 and Version 10 of Doc/Models/INCA


Ignore:
Timestamp:
01/22/21 11:04:52 (3 years ago)
Author:
acosce
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Doc/Models/INCA

    v9 v10  
    3838 
    3939## definition in file_def_inca ##  
    40 In fact there are two files of type `file_def_inca.xml` for each inca configuration (NMHC, NMHC_AER, etc.) (except for NMHC_AER_S that are using same files than NMHC_AER).  
    41  * file_def_inca_${chem}_daily.xml  --> output files will have a daily frequency 
    42  * file_def_inca_${chem}_monthly.xml --> output files will have a monthly frequency  
     40There is one file of type `file_def_inca.xml` for each inca configuration (NMHC, NMHC_AER, etc.) (except for NMHC_AER_S that are using same files than NMHC_AER).  
     41 * file_def_inca_${chem}.xml  
    4342with chem={NMHC, NMHC_AER, AER, GES, DUSS} 
    4443[[BR]] 
    45 The choice between daily or monthly output frequency is manage by the card `config.card` of your simulation  
     44You can choose the output frequency of each output file in the `inca.card` card of your simulation. For example in NMHC :  
    4645{{{ 
    47 #======================================================================== 
    48 #D-- CHM - 
    49 [CHM] 
    50 #D-- choose inca writefrequency between 1D or 1M. it is not possible to cumulate both of them 
    51 #D-- you can also manage the writefrequency in INCA/src/INCA_XML/file_*.xml files 
    52 WriteFrequency="1D 1M"   
     46 
     47# Specify output frequency for output files 
     48# File inca_oxydants will be systematically write in output with a monthly frequency - you cannot manage it from this card 
     49# for other files you can choose the frequency 1d (daily), 1mo (monthly), other (1ts, 5d, etc.) or NONE if to deactivate it 
     50# if you choose 1d the file will be store in CHM/Output/DA 
     51# if you choose 1mo the file will be store in CHM/Output/MO 
     52# if you choose another frequency, the file will be store in CHM/Output/DA by default 
     53output_frequency_chem=1d 
     54output_frequency_emi=1d 
     55output_frequency_species=1d 
     56output_frequency_dep=1d 
     57output_frequency_washrate=NONE 
     58output_frequency_veget=NONE 
     59output_frequency_reacflux=NONE 
     60output_frequency_phtrate=NONE 
     61output_frequency_invariants=NONE 
     62 
    5363}}} 
    5464[[BR]] 
     65 
    5566In files file_def_inca.xml you will find keywords '''AUTO''' 
    5667{{{ 
    57 <file id="forcage1" name="inca1d_forcage" output_freq="1d" enabled="_AUTO_"> 
     68<file id="forcage1" name="inca1d_forcage" output_freq="_AUTO_" enabled="_AUTO_"> 
    5869}}} 
    59 They are replaced automatically by the driver `inca.driver` of your simulation. Be careful  if you define new outputs files, you need to put the correct value for the parameter  '''enabled''', and not '''AUTO'''. (TRUE if you want to write this file in output, FALSE if not)  
     70They are replaced automatically by the driver `inca.driver` of your simulation. Be careful  if you define new outputs files, you need to put the correct value for parameters  '''enabled''' and '''output_freq''', and not '''AUTO'''.  
     71{{{ 
     72enabled = TRUE if you want to write this file in output, FALSE if not 
     73output_freq = 1d for daily output, 1mo for monthly, 1ts for output at the time step, 1h for hourly ...  
     74}}} 
    6075 
    6176## groups in field_def_inca ##