Ecological Landscape Modeling: Models Pages

evap_inp.c

Go to the documentation of this file.
00001 
00012 /* General notes on revisions to this source file. 
00013        Nov/Dec 2004 v2.3.2: documentation upgrade 
00014                 - Doxygen tags added 
00015         
00016 */
00017 #include "evap.h"
00018 
00019 
00020 /* \brief Get spatial input time series of Potential ET 
00021 
00022         Using the grid_map functions, this obtains potential 
00023         evapotranspiration (ET), at ELM (i.e., SME) grid scale. 
00024         \param evapSME potential ET data array (tenths mm) at the ELM/SME grid scale
00025         \return success         */
00026 
00027 
00028 
00029 
00030 int evap_data_wmm(float* evapSME)           /* array of float of size s0*s1 */
00031 {
00032 
00033   int i,j,k;
00034   int success = 1, fail = -1;
00035   int stat = success;
00036   char gridmapfilename[335];
00037 
00038   if(SimTime.TIME==0)  {      
00039 /* elm_OG_map is data structure containing the mapping attributes at two scales */
00040     elm_wmm_map = elm_OG_map;
00041 
00042     if(elm_wmm_map == NULL) {
00043       sprintf(msgStr, "Mapping grids and setting up pET data...");
00044       usrErr (msgStr);
00045 
00046       sprintf(gridmapfilename, "%s%s/Data/gridmapping.txt", ModelPath, ProjName );   
00047       stat = mapGrids(gridmapfilename);
00048       elm_wmm_map = elm_OG_map;
00049     }
00050 
00051     if(debug > 4) {
00052       printGridMap();
00053       sprintf(msgStr,"evap_data_wmm==> Finished mapping grids");
00054       usrErr (msgStr);
00055     }
00056 
00057     sprintf(evap_binfilename, "%s%s/Data/ETp.BIN", ModelPath, ProjName );
00058     /* initializing data structures, move pointer to initial date (gridmap.c) */
00059     stat = initDataStruct(evap_binfilename,&evap_struct);  
00060 
00061     if(debug > 4) {
00062       /*printELM2Grid_io(); */
00063       /*drawELM2Grid_io(); */
00064       sprintf(msgStr,"evap_data_wmm==> Finished initializing");
00065       usrErr (msgStr); 
00066     }
00067 
00068   } /* end of SimTime.TIME=0 */
00069   
00070   
00071   if(evap_struct.day >= evap_struct.recRead) {      /* process the data in batch */
00072       sprintf(msgStr,"Processing batch of pET data...");
00073       usrErr (msgStr); 
00074       stat = processData(evap_binfilename,&evap_struct);
00075 
00076       if(debug > 4 ) {
00077         /*printBatchData(evapWMM,gridio_batch_len,widCnt);*/ /* TODO: remove this printBatchData function when sure is no longer needed */
00078         sprintf(msgStr,"evap_data_wmm==> Finished processing data");
00079         usrErr (msgStr); 
00080       }
00081   } /* end of if */
00082 
00083 
00084   if(evap_struct.day < evap_struct.recRead) {      /* pass the data day by day */
00085     returnData(evapSME,&evap_struct); 
00086 
00087     for(i = 0; i < s0; i++) {
00088       for(j = 0; j < s1; j++) {
00089         k = i*s1+j;
00090         evapSME[T((i+1),(j+1))] = evap_struct.dataELM[k] * conv_inTOtenths_mm; /* convert data from inches to tenths of mm */  
00091       }
00092     } 
00093 
00094     if(debug > 4) {
00095       sprintf(msgStr,"evap_data_wmm==> Finished returning data");
00096       usrErr (msgStr); 
00097     }
00098 
00099   } /* end of if */
00100     
00101   return success;
00102 }
00103 

Generated on Sat Jan 7 14:04:15 2012 for ELM source code by  doxygen 1.5.6