You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For now, updating the (vertical) viscous displacement relies on if-else statements that select the right method to call depending on the user's choice. This is not particularly elegant, since unused parameters need to be defined. Most importantly, it does not allow the user to easily extend the code base with a new updating method. The new structure should look like:
abstract type ElasticLithoTransientAsteno endstruct LVELVA <:ElasticLithoTransientAsteno....end
method =LVELVA(params...)
functionupdate_viscous_displacement(args...)
...end
The text was updated successfully, but these errors were encountered:
For now, updating the (vertical) viscous displacement relies on
if
-else
statements that select the right method to call depending on the user's choice. This is not particularly elegant, since unused parameters need to be defined. Most importantly, it does not allow the user to easily extend the code base with a new updating method. The new structure should look like:The text was updated successfully, but these errors were encountered: