Page 1 of 1
Possible to use other material models?
Posted: Mon Nov 04, 2019 1:21 am
by hfwang
Dear developers,
I realize that svFSI currently supports three different material models: St. Venat-Kirchoff, modified St. Venant-Kirchoff, and Neo-Hookean.
The model used for deformable wall simulations in SimVascular is a linear elastic model (if I understand correctly:)).
In principle, it should be very straightforward to include the Skalak model (a popular strain-hardening model for 2D membrane) since the vessel wall in SimVascular is also modeled as a very thin wall (2D membrane). However, It appears to me that I myself as just a user cannot do it.
Is there any possibility to include other material models (especially the Skalak model which I do need) into the svFSI?
Best regards,
Haifeng
Re: Possible to use other material models?
Posted: Wed Nov 06, 2019 10:32 am
by davep
Hi Haifeng,
Adding another material model to svFSI requires adding a new function to the file Code/Source/svFSI/MATMODELS.f and calling it from Code/Source/svFSI/STRUCT.f. You would also need to modify other parts of the code to read in the material parameters.
Cheers,
Dave
Re: Possible to use other material models?
Posted: Sat Nov 16, 2019 7:19 pm
by vvedula22
Hi Haifeng,
Additionally, the new svFSI code allows you to choose Mooney-Rivlin model, transversely isotropic Guccione model and orthotropic models HGO (for arteries) and Holzapfel & Ogden (for myocardium) for solids.
Regarding the Skalak model, I believe you are talking about the one proposed in 1973 for red blood cells. This is fundamentally different from the above models as Skalak model is applied for membrane like structures while the above models are for solids. There are two ways to treat membrane/shell model in svFSI: (a) analogous to coupled momentum method (CMM) but replacing the linear material model with the Skalak model, but the validity of the original assumptions used in developing CMM need to be carefully assessed; (b) implement this as a stand alone non-linear membrane/shell model and use ALE approach to do FSI.
For implementing (a), you need to primarily modify sections of the code CMM.f related to stiffness matrix computation (see subroutine CMM_STIFFNESS). Other areas of code such as MOD.f, READFILES.f and DISTRIBUTE.f may need modification if you are reading additional parameters and sharing them to all processes. For (b), we have a non-linear Kirchhoff's thin shell model implemented using St.Venant-Kirchhoff constitutive model (see SHELLS.f) which also takes bending strains into account. However, FSI using ALE approach for shell model is not available yet and we plan to add this in near future. If you decide to choose ALE approach for your problem, then sections of SHELLS.f need to be modified for Skalak model and we need to derive the equations (membrane and bending strains, and associated tangent matrices) again.
Whatever option you choose, please let us know. We welcome outside contributions to our code and can help you with the implementation.
Thanks,
Vijay
Re: Possible to use other material models?
Posted: Mon Nov 18, 2019 1:01 am
by hfwang
Hi Vijay,
many thanks for your detailed response!
I will back to you when I have further questions in this regard.
Cheers,
Haifeng