LaminaStressStrainOutput constructor
LaminaStressStrainOutput({})
Implementation
LaminaStressStrainOutput({
this.tensorType = TensorType.stress,
this.sigma11 = 0,
this.sigma22 = 0,
this.sigma12 = 0,
this.epsilon11 = 0,
this.epsilon22 = 0,
this.gamma12 = 0,
List<List<double>>? Q, // Make it nullable and initialize later
List<List<double>>? S, // Make it nullable and initialize later
}) : Q = Q ?? [],
S = S ?? [];