-
Notifications
You must be signed in to change notification settings - Fork 48
[examples] Add a thermo-elastic example #204
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
hugtalbot
wants to merge
7
commits into
sofa-framework:master
Choose a base branch
from
hugtalbot:add_thermoelastic
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
a67c7c6
[examples] Add a thermo-elastic example
hugtalbot 501ada0
minor comment to remove
hugtalbot f7c5c44
Get compatible with #198 and add legend
hugtalbot 6f8ba93
Remove option of topo changes
hugtalbot 05cd926
Merge branch 'master' into add_thermoelastic
hugtalbot be6f292
Update scene further to recently introduced templates in Mass
hugtalbot 23982aa
avoid using strings
hugtalbot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
# Required import for python | ||
import Sofa | ||
import numpy as np | ||
|
||
|
||
def main(): | ||
import SofaRuntime | ||
import Sofa.Gui | ||
|
||
root = Sofa.Core.Node("root") | ||
createScene(root) | ||
Sofa.Simulation.init(root) | ||
|
||
Sofa.Gui.GUIManager.Init("myscene", "qglviewer") | ||
Sofa.Gui.GUIManager.createGUI(root, __file__) | ||
Sofa.Gui.GUIManager.SetDimension(1080, 600) | ||
Sofa.Gui.GUIManager.MainLoop(root) | ||
Sofa.Gui.GUIManager.closeGUI() | ||
|
||
|
||
def createScene(root): | ||
root.gravity=[0, -9.81, 0] | ||
root.dt=0.01 | ||
|
||
root.addObject('DefaultAnimationLoop') | ||
root.addObject('DefaultVisualManagerLoop') | ||
root.addObject('VisualStyle', displayFlags="hideCollisionModels showVisualModels hideForceFields showBehaviorModels") | ||
root.addObject('RequiredPlugin', pluginName="Sofa.Component.Constraint.Projective Sofa.Component.Diffusion Sofa.Component.Engine.Select Sofa.Component.LinearSolver.Direct Sofa.Component.LinearSolver.Iterative Sofa.Component.Mass Sofa.Component.ODESolver.Backward Sofa.Component.SolidMechanics.FEM.Elastic Sofa.Component.Topology.Container.Dynamic Sofa.Component.Topology.Container.Grid Sofa.Component.Topology.Mapping Sofa.Component.Visual Sofa.GL.Component.Engine Sofa.GL.Component.Rendering2D Sofa.GL.Component.Rendering3D") | ||
|
||
root.addObject('RegularGridTopology', name="gridGenerator", nx=16, ny=6, nz=6, xmin=0, xmax=1, ymin=0, ymax=0.2, zmin=0, zmax=0.2) | ||
root.addObject("OglColorMap", legendTitle="A-dimensional temperature", min=0, max=1, showLegend=True, colorScheme="Blue to Red") | ||
|
||
|
||
tetraTopo = root.addChild('TetraTopology') | ||
tetraTopo.addObject("TetrahedronSetTopologyContainer", name="tetContainer", tags="3dgeometry") | ||
tetraTopo.addObject("TetrahedronSetTopologyModifier", name="Modifier") | ||
tetraTopo.addObject("Hexa2TetraTopologicalMapping", input="@../gridGenerator", output="@tetContainer") | ||
tetraTopo.addObject("MechanicalObject", name="tetraO", position="@../gridGenerator.position", tags="3dgeometry") | ||
tetraTopo.addObject("BoxROI", name="BoundaryCondition", box=[-0.01, -0.01, -0.01, 0.01, 0.21, 0.21]) | ||
|
||
|
||
meca = tetraTopo.addChild("Mechanics") | ||
meca.addObject("EulerImplicitSolver", name="Euler Impl IntegrationScheme") | ||
meca.addObject("SparseLDLSolver", name="LDL LinearSolver", template="CompressedRowSparseMatrixMat3x3d") | ||
meca.addObject("TetrahedronSetTopologyContainer", name="tetContainer", src="@../tetContainer") | ||
meca.addObject("TetrahedronSetGeometryAlgorithms", name="tetGeometry", template="Vec3d") | ||
meca.addObject("MechanicalObject", name="MO", position="@../tetraO.position") | ||
meca.addObject("MeshMatrixMass", template="Vec3d,Vec3d", name="Mass", massDensity=100, topology="@tetContainer", geometryState="@MO") | ||
meca.addObject("FixedConstraint", name="FixedBoundaryCondition", indices="@../BoundaryCondition.indices") | ||
|
||
#initialization of the vector multiplying the local Young's modulus (need to activate updateStiffness=True) | ||
initVector = np.full((1, 576), 1.0) | ||
damienmarchal marked this conversation as resolved.
Show resolved
Hide resolved
|
||
meca.addObject("TetrahedronFEMForceField", name="LinearElasticity", youngModulus=3e5, poissonRatio=0.4, computeVonMisesStress=1, showVonMisesStressPerElement=True, localStiffnessFactor=initVector, updateStiffness=True) | ||
|
||
|
||
thermo = tetraTopo.addChild("Thermodynamics") | ||
thermo.addObject("EulerImplicitSolver", name="Euler Impl IntegrationScheme", firstOrder=True) | ||
thermo.addObject("CGLinearSolver", name="Conjugate Gradient", iterations="1000", tolerance=1.0e-10, threshold=1.0e-30) | ||
thermo.addObject("TetrahedronSetTopologyContainer", name="tetContainer", src="@../tetContainer") | ||
thermo.addObject("TetrahedronSetGeometryAlgorithms", name="tetGeometry", template="Vec3d") | ||
thermo.addObject("MechanicalObject", name="Temperatures", template="Vec1d", size=576, showObject=True) | ||
thermo.addObject("MeshMatrixMass", template="Vec1d,Vec3d", name="Conductivity", massDensity=1.0, topology="@../tetContainer", geometryState="@../Mechanics/MO") | ||
thermo.addObject("FixedConstraint", name="Heating", indices=495) | ||
thermo.addObject("TetrahedronDiffusionFEMForceField", name="DiffusionForceField", template="Vec1d", constantDiffusionCoefficient=0.05, tagMechanics="3dgeometry", mstate="@Temperatures") | ||
|
||
thermoVisu = thermo.addChild("Visu") | ||
thermoVisu.addObject("TextureInterpolation", template="Vec1d", name="EngineInterpolation", input_states="@../Temperatures.position", input_coordinates="@../../Mechanics/MO.position", min_value=0., max_value=1., manual_scale=True , drawPotentiels=False, showIndicesScale=5e-05) | ||
thermoVisu.addObject("OglModel", template="Vec3d", name="oglPotentiel", handleDynamicTopology="0", texcoords="@EngineInterpolation.output_coordinates" ,texturename="textures/heatColor.bmp", scale3d=[1, 1, 1], material="Default Diffuse 1 1 1 1 0.5 Ambient 1 1 1 1 0.3 Specular 0 0.5 0.5 0.5 1 Emissive 0 0.5 0.5 0.5 1 Shininess 0 45 No texture linked to the material No bump texture linked to the material ") | ||
thermoVisu.addObject("IdentityMapping", input="@../../Mechanics/MO", output="@oglPotentiel") | ||
|
||
# Add the controller | ||
root.addObject(ThermoMecaController(name = "MultiPhysicsController", ThermalObject=thermo.Temperatures, MechanicalForceField=meca.LinearElasticity)) | ||
|
||
return root | ||
|
||
|
||
class ThermoMecaController(Sofa.Core.Controller): | ||
def __init__(self, *args, **kwargs): | ||
# These are needed (and the normal way to override from a python class) | ||
Sofa.Core.Controller.__init__(self, *args, **kwargs) | ||
# Recover the pointers to the thermal object and the ForceField responsible of the linear elastic constitutive law | ||
self.ThermalObject = kwargs.get("ThermalObject") | ||
self.MechanicalForceField = kwargs.get("MechanicalForceField") | ||
|
||
def onAnimateEndEvent(self, event): | ||
time = self.getContext().getTime() | ||
|
||
self.temperatures = self.ThermalObject.position.array() | ||
|
||
if time > 0.5 : | ||
|
||
# Make the Young's modulus related to the temperature: E = E_init / (1 + 50*Temperature) | ||
with self.MechanicalForceField.localStiffnessFactor.writeableArray() as wa: | ||
for i in range(576) : | ||
damienmarchal marked this conversation as resolved.
Show resolved
Hide resolved
|
||
wa[i] = 1.0 / ( 1.+ 50.*self.temperatures[i][0] ) | ||
|
||
#Enforce temperature of the node 495 (extremity of the bar) | ||
# Heating phase until t = 4 | ||
if time < 4.0 : | ||
with self.ThermalObject.position.writeableArray() as wt: | ||
wt[495][0] = 1.0 | ||
# Cooling down phase when t > 4 | ||
else : | ||
with self.ThermalObject.position.writeableArray() as wt: | ||
wt[495][0] = 0.0 | ||
|
||
|
||
# Function used only if this script is called from a python environment | ||
if __name__ == '__main__': | ||
main() |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
related to .linkpath and this (PR #265)