Hi Any-Buddies
I am using the Twente lower limb model, and I am scaling the model to my subject with an (adapted) LengthMassFat-Scaling law. Although the Strength-Scaling is defined for each segment, it seems to me, that these variables are never used in the Model.
Following all the links, I couldn’t find any variable that linked the initial strength (F0) of a muscle to this Strength Scaling.
Therefore, I have added a few lines of code to the model, that links the Strength Scaling to the initial strength in both to the Simple Muscle model, as well the 3E model. (-> something to consider in the next repository release? :))
Furthermore, I have realized that the Fiber-Lenght Scaling is kind of a dead-end as well (although it seems, in the 3E -Muscle Model, that there was the intention to implement it as well). Thus, I have tried to implement this scaling Factor to scale the optimal fiber length of the muscle according to the fiber Lenght Scaling:
e.g.
AnyVar FiberLengthFactor = .FiberLengthScaleLeg;
AnyMuscleModel3E SoleusLateralis4Par = {
F0 = .PCSAfactor*85.9/3;
AnyVar LfbarTemp = (5.08/100) *.FiberLengthFactor;
…
};
However, when doing so, I get the following warning message:
LegCalibrationStudy6.Internal_dependency : Wrong initialization of AnyVarRef linking to value Lfbar in study LegCalibrationStudy6 :
Dependency (Right-hand side or internal dependency) may be evaluated later than this AnyVarRef object. This is not allowed, because it could override the AnyVarRef value transfer.
It is “only” a warning message, but not the thing I would like to see in my models.
Any idea for a work around/solution?
Thanks
Christine