Changeset 12346


Ignore:
Timestamp:
06/02/12 08:27:24 (13 years ago)
Author:
lemorzad
Message:

debug pdd methode

Location:
issm/trunk/src/c
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/modules/PositiveDegreeDayx/PositiveDegreeDayx.cpp

    r12296 r12346  
    6464    tstar = it*DT-siglim;
    6565    tint = tsint;
    66     pddt = 0;
     66    pddt = 0.;
    6767    for ( jj = 0; jj < 600; jj++){
    6868      if (tint > (tstar+siglim)){break;}
     
    9090    //    tstar = REAL(it)*DT-siglimc;
    9191    tint = tsint;          // start against upper bound
    92     pd = 0;
     92    pd = 0.;
    9393    for (jj = 0; jj < 600; jj++){
    9494      if (tint<(tstar-siglimc)) {break;}
     
    9898    pds[it] = pd*snormfac;  // gaussian integral lookup table for snow fraction
    9999  }
    100   pds[itm+1] = 0;
     100  pds[itm+1] = 0.;
    101101  //     *******END initialize PDD
    102102 
  • issm/trunk/src/c/objects/Elements/Tria.cpp

    r12330 r12346  
    20882088   int    i,iqj,imonth;
    20892089   double agd[NUMVERTICES];             // surface mass balance
     2090   double agd2[NUMVERTICES];
    20902091   double saccu[NUMVERTICES] = {0};     // yearly surface accumulation
    20912092   double smelt[NUMVERTICES] = {0};     // yearly melt
     
    20972098
    20982099   double rho_water,rho_ice,density;
    2099    double lapser=6.5/1000, sealev=0;    // lapse rate. degrees per meter. 7.5 lev's 99 paper, 9 Marshall 99 paper
     2100   double lapser=6.5/1000., sealev=0.;    // lapse rate. degrees per meter. 7.5 lev's 99 paper, 9 Marshall 99 paper
    21002101   double desfac = 0.5;                 // desert elevation factor
    21012102   double s0p[NUMVERTICES]={0};         // should be set to elevation from precip source
     
    21232124   double Tsurf[NUMVERTICES] = {0};     // average annual temperature   
    21242125   
    2125    double h[NUMVERTICES],s[NUMVERTICES],ttmp[NUMVERTICES],prectmp[NUMVERTICES]; // ,b[NUMVERTICES]
    2126    double t[NUMVERTICES+1][12],prec[NUMVERTICES+1][12];
    2127    double deltm=1/12;
    2128    int    ismon[12]={12,1,2,3,4,5,6,7,8,9,10,11};
     2126   double h[NUMVERTICES],s[NUMVERTICES]; // ,b[NUMVERTICES]
     2127   double monthlytemperatures[NUMVERTICES][12],monthlyprec[NUMVERTICES][12];
     2128   double deltm=1./12.;
     2129   int    ismon[12]={11,0,1,2,3,4,5,6,7,8,9,10};
    21292130
    21302131   double snwm;  // snow that could have been melted in a year.
     
    21362137   double fsupT=0.5,  fsupndd=0.5;  // Tsurf mode factors for supice
    21372138   double pddtj[NUMVERTICES], hmx2;
    2138 
     2139int iii;
     2140
     2141   /*Recover monthly temperatures and precipitation*/
     2142   Input*     input=inputs->GetInput(SurfaceforcingsMonthlytemperaturesEnum); _assert_(input);
     2143   Input*     input2=inputs->GetInput(SurfaceforcingsPrecipitationEnum); _assert_(input2);
     2144   GaussTria* gauss=new GaussTria();
     2145   double time,yts;
     2146   this->parameters->FindParam(&time,TimeEnum);
     2147   this->parameters->FindParam(&yts,ConstantsYtsEnum);
     2148   for(int month=0;month<12;month++) {
     2149     for(int iv=0;iv<NUMVERTICES;iv++) {
     2150       gauss->GaussVertex(iv);
     2151       input->GetInputValue(&monthlytemperatures[iv][month],gauss,time+month/12.*yts);
     2152       monthlytemperatures[iv][month]=monthlytemperatures[iv][month]-273.15; // conversion from Kelvin to celcius
     2153       input2->GetInputValue(&monthlyprec[iv][month],gauss,time+month/12.*yts);
     2154       monthlyprec[iv][month]=monthlyprec[iv][month]*yts; // convertion to m/yr
     2155     }
     2156   }
     2157// if(this->id==1) {
     2158//   input2->Echo();}
     2159   // if(this->id==1){
     2160   //   printf("-----------------time ------------------------\n");
     2161   //     printf("%f \n",time);
     2162   //   printf("-----------------precipitation ------------------------\n");
     2163   //   for (iii=0; iii<3; iii++){
     2164   //     printf("%f %f %f %f\n",monthlyprec[iii][1],monthlyprec[iii][3],monthlyprec[iii][5],monthlyprec[iii][11]);
     2165   //   }
     2166     //  printf("----------------monthlytemperatures ------------------------\n");
     2167    //   for (iii=0; iii<3; iii++){
     2168    //     printf("%f %f %f %f %f %f\n",monthlytemperatures[iii][12],monthlytemperatures[iii][13],monthlytemperatures[iii][15],monthlytemperatures[iii][17],monthlytemperatures[iii][20],monthlytemperatures[iii][24]);
     2169    //   }
     2170    // }
    21392171   /*Recover info at the vertices: */
    21402172   GetInputListOnVertices(&h[0],ThicknessEnum);
    21412173   GetInputListOnVertices(&s[0],SurfaceEnum);
    2142    GetInputListOnVertices(&ttmp[0],ThermalSpctemperatureEnum);
    2143    GetInputListOnVertices(&prectmp[0],SurfaceforcingsPrecipitationEnum);
    2144 
    2145         /*Recover monthly temperatures*/
    2146         Input*     input=inputs->GetInput(SurfaceforcingsMonthlytemperaturesEnum); _assert_(input);
    2147         GaussTria* gauss=new GaussTria();
    2148         double time,yts;
    2149         this->parameters->FindParam(&time,TimeEnum);
    2150         this->parameters->FindParam(&yts,ConstantsYtsEnum);
    2151         for(int month=0;month<12;month++){
    2152                 for(int iv=0;iv<NUMVERTICES;iv++){
    2153                         gauss->GaussVertex(iv);
    2154                         input->GetInputValue(&t[iv][month],gauss,time+month/12*yts);
    2155                         t[iv][month]=t[iv][month]-273.15; // conversion from Kelvin to celcius
    2156                 }
    2157         }
    2158 
    2159    for(i=0;i<NUMVERTICES;i++)
    2160      for(imonth=0;imonth<12;imonth++){
    2161        t[i][imonth]=ttmp[i];
    2162        prec[i][imonth]=prectmp[i];
    2163    }
    2164 
     2174   //GetInputListOnVertices(&monthlyprec[0],SurfaceforcingsPrecipitationEnum);
     2175   
    21652176   /*Get material parameters :*/
    21662177   rho_ice=matpar->GetRhoIce();
     
    21802191     imonth =  ismon[iqj];
    21812192     for (i = 0; i < NUMVERTICES; i++){
    2182        st=(s[i]-s0t[i])/1000;
    2183        tstar = t[i][imonth] - lapser *max(st,sealev);
     2193       st=(s[i]-s0t[i])/1000.;
     2194       tstar = monthlytemperatures[i][imonth] - lapser *max(st,sealev);
    21842195       Tsurf[i] = tstar*deltm+Tsurf[i];       
    21852196       
     
    21922203       
    21932204       /******exp des/elev precip reduction*******/
    2194        sp=(s[i]-s0p[i])/1000; // deselev effect is wrt chng in topo
     2205       sp=(s[i]-s0p[i])/1000.; // deselev effect is wrt chng in topo
    21952206       if (sp>0.0){q = exp(-desfac*sp);}
    21962207       else {q = 1.0;}
    21972208       
    2198        qmt[i]= qmt[i] + prec[i][imonth]*sconv;  //*sconv to convert in m of ice equivalent per month
    2199        qmpt= q*prec[i][imonth]*sconv;           
     2209       qmt[i]= qmt[i] + monthlyprec[i][imonth]*sconv;  //*sconv to convert in m of ice equivalent per month
     2210       qmpt= q*monthlyprec[i][imonth]*sconv;           
    22002211       qmp[i]= qmp[i] + qmpt;
    22012212       qm[i]= qm[i] + qmpt*pd;
    2202        
     2213   // if(time==473040000){
     2214   // if(this->id==2) {
     2215   //   printf("----------------qm----------------------\n");
     2216   //   //printf("%f %f %f \n",qm[0],qm[1],qm[2]);
     2217   //   printf("%d %f \n",i,qm[i]);
     2218   //   printf("%f \n",qmpt);
     2219   //   printf("%f \n",q);
     2220   //   printf("%f \n",monthlyprec[i][imonth]);
     2221   //   printf("%f \n",sconv);
     2222   //   printf("%f \n",pd);
     2223   //   printf("%f \n",tstar);
     2224   //   printf("%f \n",Tsurf[i]);
     2225
     2226   //   //printf("%f\n",saccu[i]);
     2227   //   //printf("%f\n",agd[i]);
     2228   //  }}     
    22032229       /*********compute PDD************/
    22042230       // ndd(month)=-(tstar-pdd(month)) since ndd+pdd gives expectation of
    22052231       // gaussian=T_m, so ndd=-(Tsurf-pdd)
    2206        if (iqj>6 &&  iqj<10){ Tsum[i]=Tsum[i]+tstar;}
     2232       if (iqj>5 &&  iqj<9){ Tsum[i]=Tsum[i]+tstar;}
    22072233       if (tstar >= siglim) {pdd[i] = pdd[i] + tstar*deltm;}
    22082234       else if (tstar> -siglim){
     
    22132239     }
    22142240   } // end of seasonal loop
    2215   
     2241 
    22162242   //******************************************************************
    22172243   for(i=0;i<NUMVERTICES;i++){
     
    22242250       snwmf=2.65*0.001;   //  ablation factor for snow per positive degree day.*0.001 to go from mm to m/ppd
    22252251       smf=17.22*0.001;    //  ablation factor for ice per pdd (Braithwaite 1995 from tarasov 2002)
    2226      }
     2252     } 
    22272253     else if(Tsum[i]< 10){
    22282254       snwmf = (0.15*Tsum[i] + 2.8)*0.001;
     
    23062332     if(Tsurf[i]<0) {
    23072333       Tsurf[i]= min(Tsurf[i]+fsupT*diffndd , 0.);}
    2308     
     2334 
    23092335     agd[i] = -smelt[i]+saccu[i];
     2336// if(this->id==2){
     2337//   printf("----------------melt accu----------------------\n");
     2338//   printf("%f\n",-smelt[i]);
     2339//   printf("%f\n",saccu[i]);
     2340//   printf("%f\n",agd[i]);
     2341//  }
     2342     agd[i] = agd[i]/yts;
    23102343     pddtj[i]=pddt;
    2311      
     2344   }       //end of the for loop over the vertices
     2345
    23122346     /*Update inputs*/   
    2313      this->inputs->AddInput(new TriaP1Input(SurfaceforcingsMassBalanceEnum,&agd[0])); ////////verifier le nom
     2347     this->inputs->AddInput(new TriaP1Input(SurfaceforcingsMassBalanceEnum,&agd[0]));
    23142348     // this->inputs->AddInput(new TriaVertexInput(ThermalSpcTemperatureEnum,&Tsurf[0]));
    2315      this->inputs->AddInput(new TriaP1Input(ThermalSpctemperatureEnum,&Tsurf[0]));
    2316      
    2317    }       //end of the for loop over the vertices
     2349     // this->inputs->AddInput(new TriaP1Input(ThermalSpctemperatureEnum,&Tsurf[0]));
     2350
     2351 
     2352   // if(this->id==2){
     2353   //   for(iii=0;iii<3;iii++){agd2[iii]=agd[iii]*yts;}
     2354   //   printf("----------------surface mass balance 2------------------------\n");
     2355   //     printf("%f %f %f\n",agd2[0],agd2[1],agd2[2]);
     2356   // }
     2357
    23182358}
    23192359/*}}}*/
Note: See TracChangeset for help on using the changeset viewer.