Changeset 21680
- Timestamp:
- 04/18/17 12:25:04 (8 years ago)
- Location:
- issm/trunk-jpl/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/cores/transient_core.cpp
r21674 r21680 176 176 /*Adaptive mesh refinement*/ 177 177 #ifdef _HAVE_NEOPZ_ 178 if(save_results) femmodel->WriteMeshInResults(); 179 if(step%amr_frequency==0 && time<finaltime) femmodel->ReMesh();//Do not refine the last step 178 if(amr_frequency){ 179 if(save_results) femmodel->WriteMeshInResults(); 180 if(step%amr_frequency==0 && time<finaltime) femmodel->ReMesh();//Do not refine the last step 181 } 180 182 #endif 181 183 -
issm/trunk-jpl/src/m/classes/trans.js
r21679 r21680 65 65 checkfield(md,'fieldname','trans.iscoupler','numel',[1],'values',[0 ,1]); 66 66 checkfield(md,'fieldname','trans.isslr','numel',[1],'values',[0 ,1]); 67 checkfield(md,'fieldname','trans.amr_frequency','numel',[1],'>=', 1,'NaN',1,'Inf',1);67 checkfield(md,'fieldname','trans.amr_frequency','numel',[1],'>=',0,'NaN',1,'Inf',1); 68 68 checkfield(md,'fieldname','trans.requested_outputs','stringrow',1); 69 69 } // }}} -
issm/trunk-jpl/src/m/classes/transient.m
r21679 r21680 47 47 self.isoceancoupling = 0; 48 48 self.iscoupler = 0; 49 self.amr_frequency = 1;49 self.amr_frequency = 0; 50 50 51 51 %default output … … 99 99 md = checkfield(md,'fieldname','transient.isoceancoupling','numel',[1],'values',[0 1]); 100 100 md = checkfield(md,'fieldname','transient.iscoupler','numel',[1],'values',[0 1]); 101 md = checkfield(md,'fieldname','transient.amr_frequency','numel',[1],'>=', 1,'NaN',1,'Inf',1);101 md = checkfield(md,'fieldname','transient.amr_frequency','numel',[1],'>=',0,'NaN',1,'Inf',1); 102 102 103 103 if (~strcmp(solution,'TransientSolution') & md.transient.iscoupling==1), -
issm/trunk-jpl/src/m/classes/transient.py
r21679 r21680 75 75 self.isslr = False 76 76 self.iscoupler = False 77 self.amr_frequency = 177 self.amr_frequency = 0 78 78 79 79 #default output … … 122 122 md = checkfield(md,'fieldname','transient.isoceancoupling','numel',[1],'values',[0,1]) 123 123 md = checkfield(md,'fieldname','transient.iscoupler','numel',[1],'values',[0,1]) 124 md = checkfield(md,'fieldname','transient.amr_frequency','numel',[1],'>=', 1,'NaN',1,'Inf',1)124 md = checkfield(md,'fieldname','transient.amr_frequency','numel',[1],'>=',0,'NaN',1,'Inf',1) 125 125 md = checkfield(md,'fieldname','transient.requested_outputs','stringrow',1) 126 126
Note:
See TracChangeset
for help on using the changeset viewer.