Changeset 27449
- Timestamp:
- 12/01/22 21:18:18 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Elements/Element.cpp
r27439 r27449 3922 3922 3923 3923 /* Start looping on the number of vertices: */ 3924 GaussTria gauss;3924 Gauss* gauss=this->NewGauss(); 3925 3925 for(int iv=0;iv<numvertices;iv++){ 3926 gauss.GaussVertex(iv);3926 gauss->GaussVertex(iv); 3927 3927 3928 3928 /* Get variables */ 3929 bed_input->GetInputValue(&bed, &gauss);3930 qsg_input->GetInputValue(&qsg, &gauss);3931 TF_input->GetInputValue(&TF, &gauss);3929 bed_input->GetInputValue(&bed,gauss); 3930 qsg_input->GetInputValue(&qsg,gauss); 3931 TF_input->GetInputValue(&TF,gauss); 3932 3932 3933 3933 if(basin_icefront_area[basinid]==0.) meltrates[iv]=0.;
Note:
See TracChangeset
for help on using the changeset viewer.