Changeset 12326
- Timestamp:
- 06/01/12 17:06:57 (13 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 25 edited
- 4 copied
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl
- Property svn:mergeinfo changed
/issm/trunk merged: 12059,12283-12284,12293-12297,12299-12301
- Property svn:mergeinfo changed
-
issm/trunk-jpl/src/c/EnumDefinitions/EnumDefinitions.h
r12266 r12326 103 103 MaterialsRhoIceEnum, 104 104 MaterialsRhoWaterEnum, 105 MaterialsRhoFreshwaterEnum, 105 106 MaterialsMuWaterEnum, 106 107 MaterialsThermalExchangeVelocityEnum, … … 160 161 SurfaceforcingsPrecipitationEnum, 161 162 SurfaceforcingsMassBalanceEnum, 163 SurfaceforcingsIspddEnum, 164 SurfaceforcingsMonthlytemperaturesEnum, 162 165 ThermalMaxiterEnum, 163 166 ThermalPenaltyFactorEnum, -
issm/trunk-jpl/src/c/modules/EnumToStringx/EnumToStringx.cpp
r12319 r12326 109 109 case MaterialsRhoIceEnum : return "MaterialsRhoIce"; 110 110 case MaterialsRhoWaterEnum : return "MaterialsRhoWater"; 111 case MaterialsRhoFreshwaterEnum : return "MaterialsRhoFreshwater"; 111 112 case MaterialsMuWaterEnum : return "MaterialsMuWater"; 112 113 case MaterialsThermalExchangeVelocityEnum : return "MaterialsThermalExchangeVelocity"; … … 166 167 case SurfaceforcingsPrecipitationEnum : return "SurfaceforcingsPrecipitation"; 167 168 case SurfaceforcingsMassBalanceEnum : return "SurfaceforcingsMassBalance"; 169 case SurfaceforcingsIspddEnum : return "SurfaceforcingsIspdd"; 170 case SurfaceforcingsMonthlytemperaturesEnum : return "SurfaceforcingsMonthlytemperatures"; 168 171 case ThermalMaxiterEnum : return "ThermalMaxiter"; 169 172 case ThermalPenaltyFactorEnum : return "ThermalPenaltyFactor"; -
issm/trunk-jpl/src/c/modules/ModelProcessorx/CreateParameters.cpp
r11964 r12326 89 89 parameters->AddObject(iomodel->CopyConstantObject(InversionIscontrolEnum)); 90 90 parameters->AddObject(iomodel->CopyConstantObject(InversionTaoEnum)); 91 parameters->AddObject(iomodel->CopyConstantObject(SurfaceforcingsIspddEnum)); 91 92 92 93 /*some parameters that did not come with the iomodel: */ -
issm/trunk-jpl/src/c/modules/ModelProcessorx/Prognostic/UpdateElementsPrognostic.cpp
r11719 r12326 20 20 int stabilization; 21 21 bool dakota_analysis; 22 bool ispdd; 22 23 23 24 /*Fetch data needed: */ … … 27 28 iomodel->Constant(&dakota_analysis,QmuIsdakotaEnum); 28 29 iomodel->FetchData(1,MeshElementsEnum); 30 iomodel->Constant(&ispdd,SurfaceforcingsIspddEnum); 29 31 30 32 /*Update elements: */ … … 44 46 iomodel->FetchDataToInput(elements,MaskElementonfloatingiceEnum); 45 47 iomodel->FetchDataToInput(elements,MaskElementonwaterEnum); 46 iomodel->FetchDataToInput(elements,SurfaceforcingsMassBalanceEnum);47 48 iomodel->FetchDataToInput(elements,BasalforcingsMeltingRateEnum); 48 49 iomodel->FetchDataToInput(elements,BasalforcingsMeltingRateCorrectionEnum); … … 66 67 iomodel->FetchDataToInput(elements,TemperatureEnum); 67 68 } 69 if(ispdd){ 70 iomodel->FetchDataToInput(elements,VyEnum); 71 iomodel->FetchDataToInput(elements,ThermalSpctemperatureEnum); 72 iomodel->FetchDataToInput(elements,SurfaceforcingsPrecipitationEnum); 73 iomodel->FetchDataToInput(elements,SurfaceforcingsMonthlytemperaturesEnum); 74 } 75 else{ 76 iomodel->FetchDataToInput(elements,SurfaceforcingsMassBalanceEnum); 77 } 68 78 69 79 /*Free data: */ -
issm/trunk-jpl/src/c/modules/PositiveDegreeDayx/PositiveDegreeDayx.cpp
r11994 r12326 26 26 double signorm = 5.5; // signorm : sigma of the temperature distribution for a normal day 27 27 double siglim; // sigma limit for the integration which is equal to 2.5 sigmanorm 28 double signormc ; // sigma of the temperature distribution for cloudy day29 double siglimc =0, siglim0, siglim0c;28 double signormc = signorm - 0.5; // sigma of the temperature distribution for cloudy day 29 double siglimc, siglim0, siglim0c; 30 30 double tstep, tsint, tint, tstepc; 31 31 int NPDMAX = 1504, NPDCMAX = 1454; … … 43 43 pds=(double*)xmalloc(NPDCMAX*sizeof(double)+1); 44 44 45 46 // PDD constant47 siglim = 2.5*signorm;48 49 45 // initialize PDD (creation of a lookup table) 50 46 tstep = 0.1; … … 53 49 snormfac = 1.0/(signorm*sqrt(2.0*acos(-1.0))); 54 50 siglim = 2.5*signorm; 51 siglimc = 2.5*signormc; 52 siglim0 = siglim/DT + 0.5; 53 siglim0c = siglimc/DT + 0.5; 54 PDup = siglimc+PDCUT; 55 55 56 itm = (int)(2*siglim/DT + 1.5); 56 57 -
issm/trunk-jpl/src/c/modules/StringToEnumx/StringToEnumx.cpp
r12319 r12326 110 110 else if (strcmp(name,"MaterialsRhoIce")==0) return MaterialsRhoIceEnum; 111 111 else if (strcmp(name,"MaterialsRhoWater")==0) return MaterialsRhoWaterEnum; 112 else if (strcmp(name,"MaterialsRhoFreshwater")==0) return MaterialsRhoFreshwaterEnum; 112 113 else if (strcmp(name,"MaterialsMuWater")==0) return MaterialsMuWaterEnum; 113 114 else if (strcmp(name,"MaterialsThermalExchangeVelocity")==0) return MaterialsThermalExchangeVelocityEnum; … … 138 139 else if (strcmp(name,"PrognosticMinThickness")==0) return PrognosticMinThicknessEnum; 139 140 else if (strcmp(name,"PrognosticPenaltyFactor")==0) return PrognosticPenaltyFactorEnum; 140 else if (strcmp(name,"PrognosticSpcthickness")==0) return PrognosticSpcthicknessEnum;141 141 else stage=2; 142 142 } 143 143 if(stage==2){ 144 if (strcmp(name,"PrognosticStabilization")==0) return PrognosticStabilizationEnum; 144 if (strcmp(name,"PrognosticSpcthickness")==0) return PrognosticSpcthicknessEnum; 145 else if (strcmp(name,"PrognosticStabilization")==0) return PrognosticStabilizationEnum; 145 146 else if (strcmp(name,"PrognosticVertexPairing")==0) return PrognosticVertexPairingEnum; 146 147 else if (strcmp(name,"QmuIsdakota")==0) return QmuIsdakotaEnum; … … 170 171 else if (strcmp(name,"SurfaceforcingsPrecipitation")==0) return SurfaceforcingsPrecipitationEnum; 171 172 else if (strcmp(name,"SurfaceforcingsMassBalance")==0) return SurfaceforcingsMassBalanceEnum; 173 else if (strcmp(name,"SurfaceforcingsIspdd")==0) return SurfaceforcingsIspddEnum; 174 else if (strcmp(name,"SurfaceforcingsMonthlytemperatures")==0) return SurfaceforcingsMonthlytemperaturesEnum; 172 175 else if (strcmp(name,"ThermalMaxiter")==0) return ThermalMaxiterEnum; 173 176 else if (strcmp(name,"ThermalPenaltyFactor")==0) return ThermalPenaltyFactorEnum; … … 265 268 } 266 269 if(stage==3){ 267 if (strcmp(name,"MacAyeal3dIceFront")==0) return MacAyeal3dIceFrontEnum; 270 if (strcmp(name,"IntVecParam")==0) return IntVecParamEnum; 271 else if (strcmp(name,"MacAyeal2dIceFront")==0) return MacAyeal2dIceFrontEnum; 272 else if (strcmp(name,"MacAyeal3dIceFront")==0) return MacAyeal3dIceFrontEnum; 268 273 else if (strcmp(name,"Matice")==0) return MaticeEnum; 269 274 else if (strcmp(name,"Matpar")==0) return MatparEnum; -
issm/trunk-jpl/src/c/modules/modules.h
r12164 r12326 94 94 #include "./ConstraintsStatex/ConstraintsStatex.h" 95 95 #include "./PointCloudFindNeighborsx/PointCloudFindNeighborsx.h" 96 #include "./PositiveDegreeDayx/PositiveDegreeDayx.h" 96 97 #include "./PropagateFlagsFromConnectivityx/PropagateFlagsFromConnectivityx.h" 97 98 #include "./Dakotax/Dakotax.h" … … 120 121 #include "./VerticesDofx/VerticesDofx.h" 121 122 #include "./VecMergex/VecMergex.h" 122 123 123 #endif -
issm/trunk-jpl/src/c/objects/Elements/Penta.cpp
r12014 r12326 2277 2277 // PDD and PD constants and variables 2278 2278 double siglim; // sigma limit for the integration which is equal to 2.5 sigmanorm 2279 double siglimc=0, siglim0, siglim0c; 2279 double signormc = signorm - 0.5; // sigma of the temperature distribution for cloudy day 2280 double siglimc, siglim0, siglim0c; 2280 2281 double PDup, pddsig, PDCUT = 2.0; // PDcut: rain/snow cutoff temperature (C) 2281 2282 double DT = 0.02; … … 2323 2324 /*Get material parameters :*/ 2324 2325 rho_ice=matpar->GetRhoIce(); 2325 rho_water=matpar->GetRhoWater(); 2326 density=rho_ice/rho_water; 2326 //rho_freshwater=matpar->GetRhoWater(); 2327 2327 2328 sconv=( rho_water/rho_ice)/12.; //rhow_rain/rhoi / 12 months2328 sconv=(1000/rho_ice)/12.; //rhow_rain/rhoi / 12 months 2329 2329 2330 2330 /*PDD constant*/ 2331 2331 siglim = 2.5*signorm; 2332 siglimc = 2.5*signormc; 2332 2333 siglim0 = siglim/DT + 0.5; 2333 2334 siglim0c = siglimc/DT + 0.5; -
issm/trunk-jpl/src/c/objects/Elements/Tria.cpp
r12272 r12326 2087 2087 2088 2088 int i,iqj,imonth; 2089 double agd[NUMVERTICES]; // surface and basal2089 double agd[NUMVERTICES]; // surface mass balance 2090 2090 double saccu[NUMVERTICES] = {0}; // yearly surface accumulation 2091 2091 double smelt[NUMVERTICES] = {0}; // yearly melt … … 2096 2096 double sconv; //rhow_rain/rhoi / 12 months 2097 2097 2098 double 2099 double lapser=6.5/1000, sealev=0; // lapse rate. degrees per meter. 2100 double desfac = 0.5; // desert elevation factor2101 double s0p[NUMVERTICES]={0}; // should be set to elevation from precip source2102 double s0t[NUMVERTICES]={0}; // should be set to elevation from temperature source2098 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 desfac = 0.5; // desert elevation factor 2101 double s0p[NUMVERTICES]={0}; // should be set to elevation from precip source 2102 double s0t[NUMVERTICES]={0}; // should be set to elevation from temperature source 2103 2103 double st; // elevation between altitude of the temp record and current altitude 2104 2104 double sp; // elevation between altitude of the prec record and current altitude 2105 2105 2106 2107 2106 // PDD and PD constants and variables 2108 2107 double siglim; // sigma limit for the integration which is equal to 2.5 sigmanorm 2109 double siglimc=0, siglim0, siglim0c; 2108 double signormc = signorm - 0.5; // sigma of the temperature distribution for cloudy day 2109 double siglimc, siglim0, siglim0c; 2110 2110 double PDup, pddsig, PDCUT = 2.0; // PDcut: rain/snow cutoff temperature (C) 2111 2111 double DT = 0.02; … … 2124 2124 2125 2125 double h[NUMVERTICES],s[NUMVERTICES],ttmp[NUMVERTICES],prectmp[NUMVERTICES]; // ,b[NUMVERTICES] 2126 double t[NUMVERTICES ][12],prec[NUMVERTICES][12];2126 double t[NUMVERTICES+1][12],prec[NUMVERTICES+1][12]; 2127 2127 double deltm=1/12; 2128 2128 int ismon[12]={12,1,2,3,4,5,6,7,8,9,10,11}; … … 2143 2143 GetInputListOnVertices(&prectmp[0],SurfaceforcingsPrecipitationEnum); 2144 2144 2145 for(i=0;i<NUMVERTICES;i++) ttmp[i]=ttmp[i]-273.15; // convertion from Kelvin to celcius 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 } 2146 2158 2147 2159 for(i=0;i<NUMVERTICES;i++) … … 2153 2165 /*Get material parameters :*/ 2154 2166 rho_ice=matpar->GetRhoIce(); 2155 rho_water=matpar->GetRhoWater(); 2156 density=rho_ice/rho_water; 2167 rho_water=matpar->GetRhoFreshwater(); 2157 2168 2158 2169 sconv=(rho_water/rho_ice)/12.; //rhow_rain/rhoi / 12 months … … 2160 2171 /*PDD constant*/ 2161 2172 siglim = 2.5*signorm; 2173 siglimc = 2.5*signormc; 2162 2174 siglim0 = siglim/DT + 0.5; 2163 2175 siglim0c = siglimc/DT + 0.5; … … 2184 2196 else {q = 1.0;} 2185 2197 2186 qmt[i]= qmt[i] + prec[i][imonth]*sconv; //*sconv to convert in m of ice equivalent 2198 qmt[i]= qmt[i] + prec[i][imonth]*sconv; //*sconv to convert in m of ice equivalent per month 2187 2199 qmpt= q*prec[i][imonth]*sconv; 2188 2200 qmp[i]= qmp[i] + qmpt; -
issm/trunk-jpl/src/c/objects/Inputs/BoolInput.h
r12014 r12326 49 49 void GetInputValue(double* pvalue); 50 50 void GetInputValue(double* pvalue,GaussTria* gauss); 51 void GetInputValue(double* pvalue,GaussTria* gauss,double time){_error_("not implemented yet");}; 51 52 void GetInputValue(double* pvalue,GaussPenta* gauss); 52 53 void GetInputValue(double* pvalue,GaussTria* gauss ,int index){_error_("not implemented yet");}; -
issm/trunk-jpl/src/c/objects/Inputs/ControlInput.h
r12014 r12326 54 54 void GetInputValue(double* pvalue); 55 55 void GetInputValue(double* pvalue,GaussTria* gauss); 56 void GetInputValue(double* pvalue,GaussTria* gauss,double time){_error_("not implemented yet");}; 56 57 void GetInputValue(double* pvalue,GaussPenta* gauss); 57 58 void GetInputValue(double* pvalue,GaussTria* gauss ,int index){_error_("not implemented yet");}; -
issm/trunk-jpl/src/c/objects/Inputs/DatasetInput.h
r12014 r12326 49 49 void GetInputValue(double* pvalue){_error_("not implemented yet");}; 50 50 void GetInputValue(double* pvalue,GaussTria* gauss){_error_("not implemented yet");}; 51 void GetInputValue(double* pvalue,GaussTria* gauss,double time){_error_("not implemented yet");}; 51 52 void GetInputValue(double* pvalue,GaussPenta* gauss){_error_("not implemented yet");}; 52 53 void GetInputValue(double* pvalue,GaussTria* gauss ,int index); -
issm/trunk-jpl/src/c/objects/Inputs/DoubleInput.h
r12014 r12326 48 48 void GetInputValue(double* pvalue); 49 49 void GetInputValue(double* pvalue,GaussTria* gauss); 50 void GetInputValue(double* pvalue,GaussTria* gauss,double time){_error_("not implemented yet");}; 50 51 void GetInputValue(double* pvalue,GaussPenta* gauss); 51 52 void GetInputValue(double* pvalue,GaussTria* gauss ,int index){_error_("not implemented yet");}; -
issm/trunk-jpl/src/c/objects/Inputs/Input.h
r11695 r12326 27 27 virtual void GetInputValue(double* pvalue)=0; 28 28 virtual void GetInputValue(double* pvalue,GaussTria* gauss)=0; 29 virtual void GetInputValue(double* pvalue,GaussTria* gauss,double time)=0; 29 30 virtual void GetInputValue(double* pvalue,GaussPenta* gauss)=0; 30 31 virtual void GetInputValue(double* pvalue,GaussTria* gauss ,int index)=0; -
issm/trunk-jpl/src/c/objects/Inputs/IntInput.h
r12014 r12326 49 49 void GetInputValue(double* pvalue); 50 50 void GetInputValue(double* pvalue,GaussTria* gauss); 51 void GetInputValue(double* pvalue,GaussTria* gauss,double time){_error_("not implemented yet");}; 51 52 void GetInputValue(double* pvalue,GaussPenta* gauss); 52 53 void GetInputValue(double* pvalue,GaussTria* gauss ,int index){_error_("not implemented yet");}; -
issm/trunk-jpl/src/c/objects/Inputs/PentaP1Input.h
r12014 r12326 49 49 void GetInputValue(double* pvalue){_error_("not implemented yet");}; 50 50 void GetInputValue(double* pvalue,GaussTria* gauss){_error_("not implemented yet");}; 51 void GetInputValue(double* pvalue,GaussTria* gauss,double time){_error_("not implemented yet");}; 51 52 void GetInputValue(double* pvalue,GaussPenta* gauss); 52 53 void GetInputValue(double* pvalue,GaussTria* gauss ,int index){_error_("not implemented yet");}; -
issm/trunk-jpl/src/c/objects/Inputs/TransientInput.cpp
r12014 r12326 2 2 * \brief: implementation of the TransientInput object 3 3 */ 4 /*Headers{{{ 1*/4 /*Headers{{{*/ 5 5 #ifdef HAVE_CONFIG_H 6 6 #include <config.h> … … 19 19 20 20 /*TransientInput constructors and destructor*/ 21 /*FUNCTION TransientInput::TransientInput(){{{ 1*/21 /*FUNCTION TransientInput::TransientInput(){{{*/ 22 22 TransientInput::TransientInput(){ 23 23 … … 30 30 } 31 31 /*}}}*/ 32 /*FUNCTION TransientInput::TransientInput(int in_enum_type){{{ 1*/32 /*FUNCTION TransientInput::TransientInput(int in_enum_type){{{*/ 33 33 TransientInput::TransientInput(int in_enum_type) 34 34 { … … 44 44 } 45 45 /*}}}*/ 46 /*FUNCTION TransientInput::~TransientInput{{{ 1*/46 /*FUNCTION TransientInput::~TransientInput{{{*/ 47 47 TransientInput::~TransientInput(){ 48 48 xfree((void**)&this->timesteps); … … 54 54 } 55 55 /*}}}*/ 56 /*FUNCTION void TransientInput::AddTimeInput(Input* input,double time){{{1*/57 void TransientInput::AddTimeInput(Input* input,double time){58 59 /*insert values at time step: */60 if (this->numtimesteps>0 && time<=this->timesteps[this->numtimesteps-1]) _assert_("timestep values must increase sequentially");61 62 //copy timesteps, add the new time, delete previous timesteps, and add the new input: inputs->AddObject(input);63 double* old_timesteps=NULL;64 65 if (this->numtimesteps > 0){66 old_timesteps=(double*)xmalloc(this->numtimesteps*sizeof(double));67 memcpy(old_timesteps,this->timesteps,this->numtimesteps*sizeof(double));68 xfree((void**)&this->timesteps);69 }70 71 this->numtimesteps=this->numtimesteps+1;72 this->timesteps=(double*)xmalloc(this->numtimesteps*sizeof(double));73 74 if (this->numtimesteps > 1){75 memcpy(this->timesteps,old_timesteps,(this->numtimesteps-1)*sizeof(double));76 xfree((void**)&old_timesteps);77 }78 79 /*go ahead and plug: */80 this->timesteps[this->numtimesteps-1]=time;81 inputs->AddObject(input);82 83 }84 /*}}}*/85 56 86 57 /*Object virtual functions definitions:*/ 87 /*FUNCTION TransientInput::Echo {{{ 1*/58 /*FUNCTION TransientInput::Echo {{{*/ 88 59 void TransientInput::Echo(void){ 89 60 this->DeepEcho(); 90 61 } 91 62 /*}}}*/ 92 /*FUNCTION TransientInput::DeepEcho{{{ 1*/63 /*FUNCTION TransientInput::DeepEcho{{{*/ 93 64 void TransientInput::DeepEcho(void){ 94 65 … … 105 76 } 106 77 /*}}}*/ 107 /*FUNCTION TransientInput::Id{{{ 1*/78 /*FUNCTION TransientInput::Id{{{*/ 108 79 int TransientInput::Id(void){ return -1; } 109 80 /*}}}*/ 110 /*FUNCTION TransientInput::MyRank{{{ 1*/81 /*FUNCTION TransientInput::MyRank{{{*/ 111 82 int TransientInput::MyRank(void){ 112 83 extern int my_rank; … … 114 85 } 115 86 /*}}}*/ 116 /*FUNCTION TransientInput::ObjectEnum{{{ 1*/87 /*FUNCTION TransientInput::ObjectEnum{{{*/ 117 88 int TransientInput::ObjectEnum(void){ 118 89 … … 121 92 } 122 93 /*}}}*/ 123 /*FUNCTION TransientInput::copy{{{ 1*/94 /*FUNCTION TransientInput::copy{{{*/ 124 95 Object* TransientInput::copy() { 125 96 … … 140 111 141 112 /*TransientInput management*/ 142 /*FUNCTION TransientInput::InstanceEnum{{{ 1*/113 /*FUNCTION TransientInput::InstanceEnum{{{*/ 143 114 int TransientInput::InstanceEnum(void){ 144 115 … … 147 118 } 148 119 /*}}}*/ 149 /*FUNCTION TransientInput::SpawnTriaInput{{{ 1*/120 /*FUNCTION TransientInput::SpawnTriaInput{{{*/ 150 121 Input* TransientInput::SpawnTriaInput(int* indices){ 151 122 … … 167 138 } 168 139 /*}}}*/ 169 /*FUNCTION TransientInput::SpawnResult{{{ 1*/140 /*FUNCTION TransientInput::SpawnResult{{{*/ 170 141 ElementResult* TransientInput::SpawnResult(int step, double time){ 171 142 … … 185 156 186 157 /*Object functions*/ 187 /*FUNCTION TransientInput::GetInputValue(double* pvalue,GaussTria* gauss){{{ 1*/158 /*FUNCTION TransientInput::GetInputValue(double* pvalue,GaussTria* gauss){{{*/ 188 159 void TransientInput::GetInputValue(double* pvalue,GaussTria* gauss){ 189 190 160 double time; 191 161 … … 200 170 201 171 delete input; 202 203 } 204 /*}}}*/ 205 /*FUNCTION TransientInput::GetInputDerivativeValue(double* p, double* xyz_list, GaussTria* gauss){{{1*/ 172 } 173 /*}}}*/ 174 /*FUNCTION TransientInput::GetInputValue(double* pvalue,GaussTria* gauss,double time){{{*/ 175 void TransientInput::GetInputValue(double* pvalue,GaussTria* gauss,double time){ 176 177 /*Retrieve interpolated values for this time step: */ 178 Input* input=GetTimeInput(time); 179 180 /*Call input function*/ 181 input->GetInputValue(pvalue,gauss); 182 183 delete input; 184 } 185 /*}}}*/ 186 /*FUNCTION TransientInput::GetInputDerivativeValue(double* p, double* xyz_list, GaussTria* gauss){{{*/ 206 187 void TransientInput::GetInputDerivativeValue(double* p, double* xyz_list, GaussTria* gauss){ 207 188 … … 221 202 } 222 203 /*}}}*/ 223 /*FUNCTION TransientInput::ChangeEnum{{{ 1*/204 /*FUNCTION TransientInput::ChangeEnum{{{*/ 224 205 void TransientInput::ChangeEnum(int newenumtype){ 225 206 this->enum_type=newenumtype; 226 207 } 227 208 /*}}}*/ 228 /*FUNCTION TransientInput::GetInputAverage{{{ 1*/209 /*FUNCTION TransientInput::GetInputAverage{{{*/ 229 210 void TransientInput::GetInputAverage(double* pvalue){ 230 211 … … 246 227 247 228 /*Intermediary*/ 248 /*FUNCTION TransientInput::SquareMin{{{1*/ 229 /*FUNCTION TransientInput::AddTimeInput{{{*/ 230 void TransientInput::AddTimeInput(Input* input,double time){ 231 232 /*insert values at time step: */ 233 if (this->numtimesteps>0 && time<=this->timesteps[this->numtimesteps-1]) _assert_("timestep values must increase sequentially"); 234 235 //copy timesteps, add the new time, delete previous timesteps, and add the new input: inputs->AddObject(input); 236 double* old_timesteps=NULL; 237 238 if (this->numtimesteps > 0){ 239 old_timesteps=(double*)xmalloc(this->numtimesteps*sizeof(double)); 240 memcpy(old_timesteps,this->timesteps,this->numtimesteps*sizeof(double)); 241 xfree((void**)&this->timesteps); 242 } 243 244 this->numtimesteps=this->numtimesteps+1; 245 this->timesteps=(double*)xmalloc(this->numtimesteps*sizeof(double)); 246 247 if (this->numtimesteps > 1){ 248 memcpy(this->timesteps,old_timesteps,(this->numtimesteps-1)*sizeof(double)); 249 xfree((void**)&old_timesteps); 250 } 251 252 /*go ahead and plug: */ 253 this->timesteps[this->numtimesteps-1]=time; 254 inputs->AddObject(input); 255 256 } 257 /*}}}*/ 258 /*FUNCTION TransientInput::SquareMin{{{*/ 249 259 void TransientInput::SquareMin(double* psquaremin, bool process_units,Parameters* parameters){ 250 260 … … 264 274 } 265 275 /*}}}*/ 266 /*FUNCTION TransientInput::InfinityNorm{{{ 1*/276 /*FUNCTION TransientInput::InfinityNorm{{{*/ 267 277 double TransientInput::InfinityNorm(void){ 268 278 … … 284 294 } 285 295 /*}}}*/ 286 /*FUNCTION TransientInput::Max{{{ 1*/296 /*FUNCTION TransientInput::Max{{{*/ 287 297 double TransientInput::Max(void){ 288 298 … … 304 314 } 305 315 /*}}}*/ 306 /*FUNCTION TransientInput::MaxAbs{{{ 1*/316 /*FUNCTION TransientInput::MaxAbs{{{*/ 307 317 double TransientInput::MaxAbs(void){ 308 318 … … 325 335 } 326 336 /*}}}*/ 327 /*FUNCTION TransientInput::Min{{{ 1*/337 /*FUNCTION TransientInput::Min{{{*/ 328 338 double TransientInput::Min(void){ 329 339 … … 346 356 } 347 357 /*}}}*/ 348 /*FUNCTION TransientInput::MinAbs{{{ 1*/358 /*FUNCTION TransientInput::MinAbs{{{*/ 349 359 double TransientInput::MinAbs(void){ 350 360 … … 366 376 } 367 377 /*}}}*/ 368 /*FUNCTION TransientInput::GetVectorFromInputs{{{ 1*/378 /*FUNCTION TransientInput::GetVectorFromInputs{{{*/ 369 379 void TransientInput::GetVectorFromInputs(Vector* vector,int* doflist){ 370 380 … … 383 393 384 394 } /*}}}*/ 385 /*FUNCTION TransientInput::GetTimeInput{{{ 1*/395 /*FUNCTION TransientInput::GetTimeInput{{{*/ 386 396 Input* TransientInput::GetTimeInput(double intime){ 387 397 … … 442 452 } 443 453 /*}}}*/ 444 /*FUNCTION TransientInput::Configure{{{ 1*/454 /*FUNCTION TransientInput::Configure{{{*/ 445 455 void TransientInput::Configure(Parameters* parameters){ 446 456 this->parameters=parameters; -
issm/trunk-jpl/src/c/objects/Inputs/TransientInput.h
r12014 r12326 51 51 void GetInputValue(double* pvalue){_error_("not implemented yet");}; 52 52 void GetInputValue(double* pvalue,GaussTria* gauss); 53 void GetInputValue(double* pvalue,GaussTria* gauss,double time); 53 54 void GetInputValue(double* pvalue,GaussPenta* gauss){_error_("not implemented yet");}; 54 55 void GetInputValue(double* pvalue,GaussTria* gauss ,int index){_error_("not implemented yet");}; -
issm/trunk-jpl/src/c/objects/Inputs/TriaP1Input.h
r12014 r12326 49 49 void GetInputValue(double* pvalue){_error_("not implemented yet");} 50 50 void GetInputValue(double* pvalue,GaussTria* gauss); 51 void GetInputValue(double* pvalue,GaussTria* gauss,double time){_error_("not implemented yet");}; 51 52 void GetInputValue(double* pvalue,GaussPenta* gauss){_error_("not implemented yet");}; 52 53 void GetInputValue(double* pvalue,GaussTria* gauss ,int index){_error_("not implemented yet");}; -
issm/trunk-jpl/src/c/objects/Materials/Matpar.cpp
r12014 r12326 25 25 Matpar::Matpar(int matpar_mid, IoModel* iomodel){ 26 26 27 this->mid 27 this->mid = matpar_mid; 28 28 iomodel->Constant(&this->rho_ice,MaterialsRhoIceEnum); 29 29 iomodel->Constant(&this->rho_water,MaterialsRhoWaterEnum); 30 iomodel->Constant(&this->rho_freshwater,MaterialsRhoFreshwaterEnum); 30 31 iomodel->Constant(&this->mu_water,MaterialsMuWaterEnum); 31 32 iomodel->Constant(&this->heatcapacity,MaterialsHeatcapacityEnum); … … 60 61 printf(" rho_ice: %g\n",rho_ice); 61 62 printf(" rho_water: %g\n",rho_water); 63 printf(" rho_freshwater: %g\n",rho_freshwater); 62 64 printf(" mu_water: %g\n",mu_water); 63 65 printf(" heatcapacity: %g\n",heatcapacity); … … 76 78 void Matpar::DeepEcho(void){ 77 79 78 printf("Matpar:\n"); 79 printf(" mid: %i\n",mid); 80 printf(" rho_ice: %g\n",rho_ice); 81 printf(" rho_water: %g\n",rho_water); 82 printf(" mu_water: %g\n",mu_water); 83 printf(" heatcapacity: %g\n",heatcapacity); 84 printf(" thermalconductivity: %g\n",thermalconductivity); 85 printf(" latentheat: %g\n",latentheat); 86 printf(" beta: %g\n",beta); 87 printf(" meltingpoint: %g\n",meltingpoint); 88 printf(" referencetemperature: %g\n",referencetemperature); 89 printf(" mixed_layer_capacity: %g\n",mixed_layer_capacity); 90 printf(" thermal_exchange_velocity: %g\n",thermal_exchange_velocity); 91 printf(" g: %g\n",g); 92 return; 80 this->Echo(); 93 81 } 94 82 /*}}}1*/ … … 158 146 this->rho_ice=constant; 159 147 break; 160 161 148 case MaterialsRhoWaterEnum: 162 149 this->rho_water=constant; 163 150 break; 164 151 case MaterialsRhoFreshwaterEnum: 152 this->rho_freshwater=constant; 153 break; 165 154 case MaterialsMuWaterEnum: 166 155 this->mu_water=constant; 167 156 break; 168 169 157 case MaterialsHeatcapacityEnum: 170 158 this->heatcapacity=constant; 171 159 break; 172 173 160 case MaterialsThermalconductivityEnum: 174 161 this->thermalconductivity=constant; 175 162 break; 176 177 163 case MaterialsLatentheatEnum: 178 164 this->latentheat=constant; 179 165 break; 180 181 166 case MaterialsBetaEnum: 182 167 this->beta=constant; 183 168 break; 184 185 169 case MaterialsMeltingpointEnum: 186 170 this->meltingpoint=constant; 187 171 break; 188 189 172 case ConstantsReferencetemperatureEnum: 190 173 this->referencetemperature=constant; 191 174 break; 192 193 175 case MaterialsMixedLayerCapacityEnum: 194 176 this->mixed_layer_capacity=constant; 195 177 break; 196 197 178 case MaterialsThermalExchangeVelocityEnum: 198 179 this->thermalconductivity=constant; 199 180 break; 200 201 181 case ConstantsGEnum: 202 182 this->g=constant; 203 183 break; 204 205 184 default: 206 185 break; … … 277 256 double Matpar::GetRhoWater(){ 278 257 return rho_water; 258 } 259 /*}}}1*/ 260 /*FUNCTION Matpar::GetRhoFreshwater {{{1*/ 261 double Matpar::GetRhoFreshwater(){ 262 return rho_freshwater; 279 263 } 280 264 /*}}}1*/ -
issm/trunk-jpl/src/c/objects/Materials/Matpar.h
r12014 r12326 15 15 16 16 private: 17 int mid; 18 double rho_ice; 19 double rho_water; 17 int mid; 18 double rho_ice; 19 double rho_water; 20 double rho_freshwater; 20 21 double mu_water; 21 22 double heatcapacity; … … 72 73 double GetRhoIce(); 73 74 double GetRhoWater(); 75 double GetRhoFreshwater(); 74 76 double GetMuWater(); 75 77 double GetMixedLayerCapacity(); -
issm/trunk-jpl/src/c/solutions/prognostic_core.cpp
r11832 r12326 16 16 /*parameters: */ 17 17 bool save_results; 18 bool ispdd; 18 19 19 20 /*activate formulation: */ … … 22 23 /*recover parameters: */ 23 24 femmodel->parameters->FindParam(&save_results,SaveResultsEnum); 25 femmodel->parameters->FindParam(&ispdd,SurfaceforcingsIspddEnum); 26 27 if(ispdd){ 28 _printf_(VerboseSolution()," call positive degree day module\n"); 29 PositiveDegreeDayx(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters); 30 } 24 31 25 32 _printf_(VerboseSolution()," call computational core\n"); 26 33 solver_linear(femmodel); 27 34 28 35 if(save_results){ 29 36 _printf_(VerboseSolution()," saving results\n"); -
issm/trunk-jpl/src/m/classes/materials.m
r11869 r12326 8 8 rho_ice = 0; 9 9 rho_water = 0; 10 rho_freshwater = 0; 10 11 mu_water = 0; 11 12 heatcapacity = 0; … … 34 35 obj.rho_ice=917; 35 36 36 % water density (kg/m^3)37 %ocean water density (kg/m^3) 37 38 obj.rho_water=1023; 39 40 %fresh water density (kg/m^3) 41 obj.rho_freshwater=1000; 38 42 39 43 %water viscosity (N.s/m^2) … … 68 72 checkfield(md,'materials.rho_ice','>',0); 69 73 checkfield(md,'materials.rho_water','>',0); 74 checkfield(md,'materials.rho_freshwater','>',0); 70 75 checkfield(md,'materials.mu_water','>',0); 71 76 checkfield(md,'materials.rheology_B','>',0,'size',[md.mesh.numberofvertices 1]); … … 77 82 78 83 fielddisplay(obj,'rho_ice','ice density [kg/m^3]'); 79 fielddisplay(obj,'rho_water','water density [kg/m^3]'); 84 fielddisplay(obj,'rho_water','ocean water density [kg/m^3]'); 85 fielddisplay(obj,'freshrho_water','fresh water density [kg/m^3]'); 80 86 fielddisplay(obj,'mu_water','water viscosity [N s/m^2]'); 81 87 fielddisplay(obj,'heatcapacity','heat capacity [J/kg/K]'); … … 93 99 WriteData(fid,'object',obj,'fieldname','rho_ice','format','Double'); 94 100 WriteData(fid,'object',obj,'fieldname','rho_water','format','Double'); 101 WriteData(fid,'object',obj,'fieldname','rho_freshwater','format','Double'); 95 102 WriteData(fid,'object',obj,'fieldname','mu_water','format','Double'); 96 103 WriteData(fid,'object',obj,'fieldname','heatcapacity','format','Double'); -
issm/trunk-jpl/src/m/classes/surfaceforcings.m
r11869 r12326 8 8 precipitation = NaN; 9 9 mass_balance = NaN; 10 ispdd = 0; 11 monthlytemperatures = NaN; 10 12 end 11 13 methods … … 19 21 end % }}} 20 22 function obj = setdefaultparameters(obj) % {{{ 23 24 %pdd method not used in default mode 25 obj.ispdd=0; 21 26 22 27 end % }}} … … 24 29 25 30 if ismember(PrognosticAnalysisEnum,analyses), 26 checkfield(md,'surfaceforcings.mass_balance','forcing',1,'NaN',1); 31 checkfield(md,'surfaceforcings.ispdd','numel',1,'values',[0 1]); 32 if(obj.ispdd) 33 checkfield(md,'surfaceforcings.monthlytemperatures','forcing',1,'NaN',1); 34 else 35 checkfield(md,'surfaceforcings.mass_balance','forcing',1,'NaN',1); 36 end 27 37 end 28 38 if ismember(BalancethicknessAnalysisEnum,analyses), … … 35 45 fielddisplay(obj,'precipitation','surface precipitation [m/yr water eq]'); 36 46 fielddisplay(obj,'mass_balance','surface mass balance [m/yr ice eq]'); 47 fielddisplay(obj,'ispdd','is pdd activated (0 or 1, default is 0)'); 48 fielddisplay(obj,'monthlytemperatures','monthly surface temperatures required if pdd is activated'); 37 49 38 50 end % }}} … … 40 52 WriteData(fid,'object',obj,'fieldname','precipitation','format','DoubleMat','mattype',1); 41 53 WriteData(fid,'object',obj,'fieldname','mass_balance','format','DoubleMat','mattype',1); 54 WriteData(fid,'object',obj,'fieldname','ispdd','format','Boolean'); 55 if obj.ispdd, 56 WriteData(fid,'object',obj,'fieldname','monthlytemperatures','format','DoubleMat','mattype',1); 57 end 58 42 59 end % }}} 43 60 end
Note:
See TracChangeset
for help on using the changeset viewer.