Changeset 12346
- Timestamp:
- 06/02/12 08:27:24 (13 years ago)
- Location:
- issm/trunk/src/c
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/modules/PositiveDegreeDayx/PositiveDegreeDayx.cpp
r12296 r12346 64 64 tstar = it*DT-siglim; 65 65 tint = tsint; 66 pddt = 0 ;66 pddt = 0.; 67 67 for ( jj = 0; jj < 600; jj++){ 68 68 if (tint > (tstar+siglim)){break;} … … 90 90 // tstar = REAL(it)*DT-siglimc; 91 91 tint = tsint; // start against upper bound 92 pd = 0 ;92 pd = 0.; 93 93 for (jj = 0; jj < 600; jj++){ 94 94 if (tint<(tstar-siglimc)) {break;} … … 98 98 pds[it] = pd*snormfac; // gaussian integral lookup table for snow fraction 99 99 } 100 pds[itm+1] = 0 ;100 pds[itm+1] = 0.; 101 101 // *******END initialize PDD 102 102 -
issm/trunk/src/c/objects/Elements/Tria.cpp
r12330 r12346 2088 2088 int i,iqj,imonth; 2089 2089 double agd[NUMVERTICES]; // surface mass balance 2090 double agd2[NUMVERTICES]; 2090 2091 double saccu[NUMVERTICES] = {0}; // yearly surface accumulation 2091 2092 double smelt[NUMVERTICES] = {0}; // yearly melt … … 2097 2098 2098 2099 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 paper2100 double lapser=6.5/1000., sealev=0.; // lapse rate. degrees per meter. 7.5 lev's 99 paper, 9 Marshall 99 paper 2100 2101 double desfac = 0.5; // desert elevation factor 2101 2102 double s0p[NUMVERTICES]={0}; // should be set to elevation from precip source … … 2123 2124 double Tsurf[NUMVERTICES] = {0}; // average annual temperature 2124 2125 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]={1 2,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}; 2129 2130 2130 2131 double snwm; // snow that could have been melted in a year. … … 2136 2137 double fsupT=0.5, fsupndd=0.5; // Tsurf mode factors for supice 2137 2138 double pddtj[NUMVERTICES], hmx2; 2138 2139 int 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 // } 2139 2171 /*Recover info at the vertices: */ 2140 2172 GetInputListOnVertices(&h[0],ThicknessEnum); 2141 2173 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 2165 2176 /*Get material parameters :*/ 2166 2177 rho_ice=matpar->GetRhoIce(); … … 2180 2191 imonth = ismon[iqj]; 2181 2192 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); 2184 2195 Tsurf[i] = tstar*deltm+Tsurf[i]; 2185 2196 … … 2192 2203 2193 2204 /******exp des/elev precip reduction*******/ 2194 sp=(s[i]-s0p[i])/1000 ; // deselev effect is wrt chng in topo2205 sp=(s[i]-s0p[i])/1000.; // deselev effect is wrt chng in topo 2195 2206 if (sp>0.0){q = exp(-desfac*sp);} 2196 2207 else {q = 1.0;} 2197 2208 2198 qmt[i]= qmt[i] + prec[i][imonth]*sconv; //*sconv to convert in m of ice equivalent per month2199 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; 2200 2211 qmp[i]= qmp[i] + qmpt; 2201 2212 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 // }} 2203 2229 /*********compute PDD************/ 2204 2230 // ndd(month)=-(tstar-pdd(month)) since ndd+pdd gives expectation of 2205 2231 // 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;} 2207 2233 if (tstar >= siglim) {pdd[i] = pdd[i] + tstar*deltm;} 2208 2234 else if (tstar> -siglim){ … … 2213 2239 } 2214 2240 } // end of seasonal loop 2215 2241 2216 2242 //****************************************************************** 2217 2243 for(i=0;i<NUMVERTICES;i++){ … … 2224 2250 snwmf=2.65*0.001; // ablation factor for snow per positive degree day.*0.001 to go from mm to m/ppd 2225 2251 smf=17.22*0.001; // ablation factor for ice per pdd (Braithwaite 1995 from tarasov 2002) 2226 } 2252 } 2227 2253 else if(Tsum[i]< 10){ 2228 2254 snwmf = (0.15*Tsum[i] + 2.8)*0.001; … … 2306 2332 if(Tsurf[i]<0) { 2307 2333 Tsurf[i]= min(Tsurf[i]+fsupT*diffndd , 0.);} 2308 2334 2309 2335 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; 2310 2343 pddtj[i]=pddt; 2311 2344 } //end of the for loop over the vertices 2345 2312 2346 /*Update inputs*/ 2313 this->inputs->AddInput(new TriaP1Input(SurfaceforcingsMassBalanceEnum,&agd[0])); ////////verifier le nom2347 this->inputs->AddInput(new TriaP1Input(SurfaceforcingsMassBalanceEnum,&agd[0])); 2314 2348 // 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 2318 2358 } 2319 2359 /*}}}*/
Note:
See TracChangeset
for help on using the changeset viewer.