Changeset 24711
- Timestamp:
- 04/16/20 02:44:38 (5 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Elements/Penta.cpp
r24709 r24711 1006 1006 /*Update Levelset*/ 1007 1007 this->AddInput2(distanceenum,&ls[0],P1Enum); 1008 } 1009 /*}}}*/ 1010 void Penta::CreateInputTimeAverage(int transientinput_enum,int averagedinput_enum,IssmDouble start_time,IssmDouble end_time){/*{{{*/ 1011 1012 _assert_(end_time>start_time); 1013 1014 /*Intermediaries*/ 1015 IssmDouble averaged_values[NUMVERTICES]; 1016 IssmDouble current_values[NUMVERTICES]; 1017 IssmDouble dt; 1018 int found,start_offset,end_offset; 1019 int averaging_method=0; 1020 1021 1022 /*Get transient input time steps*/ 1023 int numtimesteps; 1024 IssmDouble *timesteps = NULL; 1025 TransientInput2* transient_input = this->inputs2->GetTransientInput(transientinput_enum); 1026 transient_input->GetAllTimes(×teps,&numtimesteps); 1027 1028 /*go through the timesteps, and grab offset for start and end*/ 1029 found=binary_search(&start_offset,start_time,timesteps,numtimesteps); 1030 if(!found) _error_("Input not found (is TransientInput sorted ?)"); 1031 found=binary_search(&end_offset,end_time,timesteps,numtimesteps); 1032 if(!found) _error_("Input not found (is TransientInput sorted ?)"); 1033 1034 Gauss* gauss=this->NewGauss(); 1035 1036 /*stack the input for each timestep in the slice*/ 1037 int offset = start_offset; 1038 while(offset < end_offset ){ 1039 1040 1041 if(offset==-1){ 1042 /*get values for the first time: */ 1043 _assert_(start_time<timesteps[0]); 1044 PentaInput2* input = transient_input->GetPentaInput(0); 1045 1046 int interpolation = input->GetInterpolation(); 1047 _assert_(interpolation==P1Enum); 1048 /*Intermediaries*/ 1049 int numindices; 1050 int indices[NUMVERTICES]; 1051 numindices = NUMVERTICES; 1052 for(int i=0;i<NUMVERTICES;i++) indices[i] = vertices[i]->lid; 1053 input->Serve(numindices,&indices[0]); 1054 1055 for(int iv=0;iv<NUMVERTICES;iv++){ 1056 gauss->GaussVertex(iv); 1057 input->GetInputValue(¤t_values[iv],gauss); 1058 } 1059 dt = timesteps[0] - start_time; _assert_(dt>0.); 1060 } 1061 else{ 1062 PentaInput2* input = transient_input->GetPentaInput(offset+1); 1063 int interpolation = input->GetInterpolation(); 1064 _assert_(interpolation==P1Enum); 1065 /*Intermediaries*/ 1066 int numindices; 1067 int indices[NUMVERTICES]; 1068 numindices = NUMVERTICES; 1069 for(int i=0;i<NUMVERTICES;i++) indices[i] = vertices[i]->lid; 1070 input->Serve(numindices,&indices[0]); 1071 1072 for(int iv=0;iv<NUMVERTICES;iv++){ 1073 gauss->GaussVertex(iv); 1074 input->GetInputValue(¤t_values[iv],gauss); 1075 } 1076 if(offset == numtimesteps-1){ 1077 dt = end_time - timesteps[offset]; _assert_(dt>0.); 1078 } 1079 else{ 1080 dt = timesteps[offset+1] - timesteps[offset]; _assert_(dt>0.); 1081 } 1082 } 1083 1084 switch(averaging_method){ 1085 case 0: /*Arithmetic mean*/ 1086 if(offset==start_offset){ 1087 for(int iv=0;iv<NUMVERTICES;iv++) averaged_values[iv] = dt*current_values[iv]; 1088 } 1089 else{ 1090 for(int iv=0;iv<NUMVERTICES;iv++) averaged_values[iv] += dt*current_values[iv]; 1091 } 1092 break; 1093 case 1: /*Geometric mean*/ 1094 if(offset==start_offset){ 1095 for(int iv=0;iv<NUMVERTICES;iv++) averaged_values[iv] = dt*current_values[iv]; 1096 } 1097 else{ 1098 for(int iv=0;iv<NUMVERTICES;iv++) averaged_values[iv] *= dt*current_values[iv]; 1099 } 1100 break; 1101 case 2: /*Harmonic mean*/ 1102 if(offset==start_offset){ 1103 for(int iv=0;iv<NUMVERTICES;iv++){ 1104 _assert_(current_values[iv]>1.e-50); 1105 averaged_values[iv] = dt*1./current_values[iv]; 1106 } 1107 } 1108 else{ 1109 for(int iv=0;iv<NUMVERTICES;iv++){ 1110 _assert_(current_values[iv]>1.e-50); 1111 averaged_values[iv] += dt*1./current_values[iv]; 1112 } 1113 } 1114 break; 1115 default: 1116 _error_("averaging method is not recognised"); 1117 } 1118 1119 offset+=1; 1120 } 1121 1122 /*Integration done, now normalize*/ 1123 switch(averaging_method){ 1124 case 0: //Arithmetic mean 1125 for(int iv=0;iv<NUMVERTICES;iv++) averaged_values[iv] = averaged_values[iv]/(end_time - start_time); 1126 break; 1127 case 1: /*Geometric mean*/ 1128 for(int iv=0;iv<NUMVERTICES;iv++) averaged_values[iv] = pow(averaged_values[iv], 1./(end_time - start_time)); 1129 break; 1130 case 2: /*Harmonic mean*/ 1131 for(int iv=0;iv<NUMVERTICES;iv++) averaged_values[iv] = 1./(averaged_values[iv]/(end_time - start_time)); 1132 break; 1133 default: 1134 _error_("averaging method is not recognised"); 1135 } 1136 1137 this->AddInput2(averagedinput_enum,&averaged_values[0],P1Enum); 1138 1139 /*Cleanup*/ 1140 delete gauss; 1141 xDelete<IssmDouble>(timesteps); 1008 1142 } 1009 1143 /*}}}*/ … … 2173 2307 delete gauss; 2174 2308 return flux; 2175 2309 2176 2310 } 2177 2311 /*}}}*/ … … 2929 3063 2930 3064 /*First, serarch the input: */ 2931 Input2* data=this->GetInput2(natureofdataenum); 3065 Input2* data=this->GetInput2(natureofdataenum); 2932 3066 2933 3067 /*figure out if we have the vertex id: */ … … 4041 4175 /*Get material parameters :*/ 4042 4176 rho_ice=FindParam(MaterialsRhoIceEnum); 4043 Input2* floatingmelt_input = this->GetInput2(BasalforcingsFloatingiceMeltingRateEnum); _assert_(floatingmelt_input); 4177 Input2* floatingmelt_input = this->GetInput2(BasalforcingsFloatingiceMeltingRateEnum); _assert_(floatingmelt_input); 4044 4178 Input2* gllevelset_input = this->GetInput2(MaskGroundediceLevelsetEnum); _assert_(gllevelset_input); 4045 4179 Input2* scalefactor_input = NULL; 4046 4180 if(scaled==true){ 4047 scalefactor_input = this->GetInput2(MeshScaleFactorEnum); _assert_(scalefactor_input); 4181 scalefactor_input = this->GetInput2(MeshScaleFactorEnum); _assert_(scalefactor_input); 4048 4182 } 4049 4183 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); … … 4090 4224 Input2* scalefactor_input = NULL; 4091 4225 if(scaled==true){ 4092 scalefactor_input = this->GetInput2(MeshScaleFactorEnum); _assert_(scalefactor_input); 4226 scalefactor_input = this->GetInput2(MeshScaleFactorEnum); _assert_(scalefactor_input); 4093 4227 } 4094 4228 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); -
issm/trunk-jpl/src/c/classes/Elements/Penta.h
r24565 r24711 68 68 void CreateDistanceInputFromSegmentlist(IssmDouble* distances,int distanceenum); 69 69 ElementMatrix* CreateBasalMassMatrix(void); 70 void CreateInputTimeAverage(int transientinput_enum,int averagedinput_enum,IssmDouble start_time,IssmDouble end_time); 70 71 void ElementResponse(IssmDouble* presponse,int response_enum); 71 72 void ElementSizes(IssmDouble* hx,IssmDouble* hy,IssmDouble* hz); -
issm/trunk-jpl/src/c/classes/Inputs2/TransientInput2.cpp
r24659 r24711 138 138 void TransientInput2::AddTriaTimeInput(IssmDouble time,int numindices,int* indices,IssmDouble* values_in,int interp_in){/*{{{*/ 139 139 140 141 140 /*Check whether this is the last time step that we have*/ 142 141 if(this->numtimesteps){ … … 181 180 void TransientInput2::AddPentaTimeInput(IssmDouble time,int numindices,int* indices,IssmDouble* values_in,int interp_in){/*{{{*/ 182 181 183 _error_("not implemented yet, look at TransientInput2::AddTriaTimeInput"); 182 /*Check whether this is the last time step that we have*/ 183 if(this->numtimesteps){ 184 if(fabs(this->timesteps[this->numtimesteps-1]-time)<1.0e-5){ 185 this->AddPentaTimeInput(this->numtimesteps-1,numindices,indices,values_in,interp_in); 186 return; 187 } 188 } 189 190 /*This is a new time step! we need to add it to the list*/ 191 if(this->numtimesteps>0 && time<this->timesteps[this->numtimesteps-1]) _error_("timestep values must increase sequentially"); 192 193 IssmDouble *old_timesteps = NULL; 194 Input2 **old_inputs = NULL; 195 if (this->numtimesteps > 0){ 196 old_timesteps=xNew<IssmDouble>(this->numtimesteps); 197 xMemCpy(old_timesteps,this->timesteps,this->numtimesteps); 198 xDelete<IssmDouble>(this->timesteps); 199 old_inputs=xNew<Input2*>(this->numtimesteps); 200 xMemCpy(old_inputs,this->inputs,this->numtimesteps); 201 xDelete<Input2*>(this->inputs); 202 } 203 204 this->numtimesteps=this->numtimesteps+1; 205 this->timesteps=xNew<IssmDouble>(this->numtimesteps); 206 this->inputs = xNew<Input2*>(this->numtimesteps); 207 208 if (this->numtimesteps > 1){ 209 xMemCpy(this->inputs,old_inputs,this->numtimesteps-1); 210 xMemCpy(this->timesteps,old_timesteps,this->numtimesteps-1); 211 xDelete(old_timesteps); 212 xDelete<Input2*>(old_inputs); 213 } 214 215 /*go ahead and plug: */ 216 this->timesteps[this->numtimesteps-1] = time; 217 this->inputs[this->numtimesteps-1] = NULL; 218 this->AddPentaTimeInput(this->numtimesteps-1,numindices,indices,values_in,interp_in); 184 219 185 220 } -
issm/trunk-jpl/test/NightlyRun/runme.py
r24565 r24711 157 157 print(("File {} saved. \n".format(os.path.join('..', 'Archives', archive_name + '.arch')))) 158 158 159 159 #ELSE: CHECK TEST 160 160 else: 161 161 #load archive -
issm/trunk-jpl/test/NightlyRun/test701.py
r24261 r24711 13 13 md = bamgflowband(model(), x, b + h, b, 'hmax', 80.) 14 14 15 print(isinstance(md, model))16 17 15 #Geometry #interp1d returns a function to be called on md.mesh.x 18 16 md.geometry.surface = np.interp(md.mesh.x, x, b + h) … … 21 19 22 20 #mask 23 md.mask.ice_levelset = -np.ones((md.mesh.numberofvertices ,))21 md.mask.ice_levelset = -np.ones((md.mesh.numberofvertices)) 24 22 md.mask.ice_levelset[np.where(md.mesh.vertexflags(2))] = 0. 25 md.mask.groundedice_levelset = np.zeros((md.mesh.numberofvertices ,)) - 0.523 md.mask.groundedice_levelset = np.zeros((md.mesh.numberofvertices)) - 0.5 26 24 27 25 #materials 28 md.initialization.temperature = (273. - 20.) * np.ones((md.mesh.numberofvertices ,))26 md.initialization.temperature = (273. - 20.) * np.ones((md.mesh.numberofvertices)) 29 27 md.materials.rheology_B = paterson(md.initialization.temperature) 30 md.materials.rheology_n = 3. * np.ones((md.mesh.numberofelements ,))28 md.materials.rheology_n = 3. * np.ones((md.mesh.numberofelements)) 31 29 32 30 #friction 33 md.friction.coefficient = np.zeros((md.mesh.numberofvertices ,))31 md.friction.coefficient = np.zeros((md.mesh.numberofvertices)) 34 32 md.friction.coefficient[np.where(md.mesh.vertexflags(1))] = 20. 35 md.friction.p = np.ones((md.mesh.numberofelements ,))36 md.friction.q = np.ones((md.mesh.numberofelements ,))33 md.friction.p = np.ones((md.mesh.numberofelements)) 34 md.friction.q = np.ones((md.mesh.numberofelements)) 37 35 38 36 #Boundary conditions … … 47 45 48 46 #Misc 49 print(isinstance(md, model))50 print(type(md))51 47 md = setflowequation(md, 'FS', 'all') 52 48 md.stressbalance.abstol = np.nan … … 67 63 for i in ['MINI', 'MINIcondensed', 'TaylorHood', 'LATaylorHood', 'CrouzeixRaviart', 'LACrouzeixRaviart']: 68 64 print(' ') 69 print(' == == == Testing ' + i + ' Full - Stokes Finite element == == =')65 print('=====Testing ' + i + ' Full-Stokes Finite element=====') 70 66 md.flowequation.fe_FS = i 71 67 md = solve(md, 'Stressbalance')
Note:
See TracChangeset
for help on using the changeset viewer.