Changeset 12918


Ignore:
Timestamp:
08/06/12 17:35:49 (13 years ago)
Author:
cborstad
Message:

CHG: return all strain rates in units of 1/a for consistency

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified issm/branches/trunk-jpl-damage/src/m/model/mechanicalproperties.m

    r11462 r12918  
    33%
    44%   this routine computes the components of the stress tensor
    5 %   strain rate tensor and their respective principal directions.
     5%   strain rate tensor (1/a) and their respective principal directions.
    66%   the results are in the model md: md.results
    77%
     
    9999
    100100strainrate=struct('xx',[],'yy',[],'xy',[],'principalvalue1',[],'principalaxis1',[],'principalvalue2',[],'principalaxis2',[],'effectivevalue',[]);
    101 strainrate.xx=ux;
    102 strainrate.yy=vy;
    103 strainrate.xy=uyvx;
     101strainrate.xx=ux*(365.25*24*3600); %strain rate in 1/a instead of 1/s
     102strainrate.yy=vy*(365.25*24*3600); %strain rate in 1/a instead of 1/s
     103strainrate.xy=uyvx*(365.25*24*3600); %strain rate in 1/a instead of 1/s
    104104strainrate.principalvalue2=valuesstrain(:,1)*(365.25*24*3600); %strain rate in 1/a instead of 1/s
    105105strainrate.principalaxis2=directionsstrain(:,1:2);
Note: See TracChangeset for help on using the changeset viewer.