These commands are used to update permeability parameters of solid-fluid fully coupled elements including FourNodeQuadUP, Nine_Four_Node_QuadUP, BrickUP, and Twenty_Eight_Node_BrickUP.
To update the permeability parameters, please follow the steps below:
Step 1: Define a parameter using the parameter command:
parameter $param_tag element $ele_tag hPerm
parameter $param_tag element $ele_tag vPerm
$param_tag |
Parameter number. |
$ele_tag |
Element number. |
where hPerm represents the permeability parameter in the horizontal direction, and vPerm for the vertical direction.
Step 2 (Optional): Add to the parameter for more elements (if needed) using the addToParameter command:
addToParameter $param_tag element $ele_tag hPerm
addToParameter $param_tag element $ele_tag vPerm
$param_tag |
The previous defined parameter number. |
$ele_tag |
Element number. |
Step 3: Update the parameter using the updateParameter command:
updateParameter $param_tag $newVal
$param_tag |
The previous defined parameter number. |
$newVal |
New parameter value. |
Example:
…
parameter 1 element 1 hPerm
addToParameter 1 element 2 hPerm
…
updateParameter 1 1e-5
…