Changeset 27091
- Timestamp:
- 06/22/22 15:47:23 (3 years ago)
- Location:
- issm/branches/trunk-larour-SLPS2022/src/m/classes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/branches/trunk-larour-SLPS2022/src/m/classes/dslmme.m
r27090 r27091 54 54 h=self.global_average_thermosteric_sea_level{i}; 55 55 times=h(end,:); 56 avgtime=mean(times) 56 avgtime=mean(times); 57 57 if(avgtime<10000) 58 58 error('dslmme checkconsistency error messages: time tags for global_average_thermosteric_sea_level should be in seconds!'); -
issm/branches/trunk-larour-SLPS2022/src/m/classes/mmemasstransport.m
r27090 r27091 58 58 h=self.thickness{i}; 59 59 times=h(end,:); 60 avgtime=mean(times) 60 avgtime=mean(times); 61 61 if(avgtime<10000) 62 62 error('mmemasstransport checkconsistency error messages: time tags for thicknesses should be in seconds!'); -
issm/branches/trunk-larour-SLPS2022/src/m/classes/mmeofflinesolidearthsolution.m
r27090 r27091 55 55 h=self.displacementup{i}; 56 56 times=h(end,:); 57 avgtime=mean(times) 57 avgtime=mean(times); 58 58 if(avgtime<10000) 59 59 error('dslmme checkconsistency error messages: time tags for displacementup should be in seconds!'); … … 64 64 h=self.geoid{i}; 65 65 times=h(end,:); 66 avgtime=mean(times) 66 avgtime=mean(times); 67 67 if(avgtime<10000) 68 68 error('dslmme checkconsistency error messages: time tags for geoid should be in seconds!'); … … 73 73 h=self.displacementeast{i}; 74 74 times=h(end,:); 75 avgtime=mean(times) 75 avgtime=mean(times); 76 76 if(avgtime<10000) 77 77 error('dslmme checkconsistency error messages: time tags for displacementeast should be in seconds!'); … … 82 82 h=self.displacementnorth{i}; 83 83 times=h(end,:); 84 avgtime=mean(times) 84 avgtime=mean(times); 85 85 if(avgtime<10000) 86 86 error('dslmme checkconsistency error messages: time tags for displacementnorth should be in seconds!');
Note:
See TracChangeset
for help on using the changeset viewer.