FeResPost Web Site                     FeResPost Online User Manual

II.4.7.5 Other ply results

Several methods of the ClaLam class allow to estimate values from the stored ply stresses and strains. Three such methods return the values calculated for several plies:

getDerived” and “getFailureIndices” have the same parameters:

So for example, “getFailureIndices” method may be called as follows:

     criteria=["TsaiHill2D","MaxStress2D"]  
     ...  
     fiRes=getFailureIndices(criteria)  
     ...  
     fiRes=getFailureIndices(db,criteria)  
     ...  
     fiRes=getFailureIndices(db,criteria,[4,"Sup"],[7,"Inf"])  
 

Note that several criteria can be calculated by a single call.

Methods “getReserveFactors” and “getStrengthRatios” have one additional parameter: the factor of safety. This parameters is a Real value provided after the list of criteria and before the optional layer identifiers. For example

     criteria=["TsaiHill2D","MaxStress2D"]  
     ...  
     rfRes=getReserveFactors(db,criteria,1.25,[4,"Sup"],[7,"Inf"])

Each of the four methods described above returns an Array containing two elements:

1.
The first element is an Array of Strings containing the list of criteria that have been calculated. Indeed, the criteria are calculated only if the criterion is available. This Array has X elements.
2.
The second element contains the new layered results. Each element of this Array contains 2+X elements:

The four methods “getDerived”, “getFailureIndices”, “getReserveFactors” and “getStrengthRatios” have “Min” and “Max” variants. This makes six additional methods: “getMinDerived”, “getMinFailureIndices”, “getMinReserveFactors”, “getMinStrengthRatios”, “getMaxDerived”, “getMaxFailureIndices”, “getMaxReserveFactors” and “getMaxStrengthRatios”. These methods have the same parameters as their basic corresponding methods and are used to return values associated to the most critical ply. (The ply leading to maximum or minimum calculated criterion.) The returned Array, however, is different. The returned value is an Array of which each element is an Array of four elements:

1.
The calculated criterion (String).
2.
Two elements identifying the critical layer (an integer and string value).
3.
A Real object corresponding to the critical value.

The criteria presently available are summarized in Table II.1.2.