Skip to content

Commit d4d339a

Browse files
committed
Fix requiredPlugins
1 parent baeff53 commit d4d339a

13 files changed

Lines changed: 13 additions & 13 deletions

examples/bouncingBall/softSphereFalling.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
'Sofa.Component.LinearSolver.Direct',
1919
'Sofa.Component.Mapping.Linear',
2020
'Sofa.Component.Mass',
21-
'Sofa.Component.ODESolver.Backward',
21+
'Sofa.Component.IntegrationSchemes.Backward',
2222
'Sofa.Component.SolidMechanics.FEM.Elastic',
2323
'Sofa.Component.StateContainer',
2424
'Sofa.Component.Topology.Container.Constant',

examples/bouncingBall/softSphereFalling_reduced.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
'Sofa.Component.LinearSolver.Direct', # Needed to use components [SparseLDLSolver]
2424
'Sofa.Component.Mapping.Linear', # Needed to use components [BarycentricMapping]
2525
'Sofa.Component.Mass', # Needed to use components [UniformMass]
26-
'Sofa.Component.ODESolver.Backward', # Needed to use components [EulerImplicitIntegrationScheme]
26+
'Sofa.Component.IntegrationSchemes.Backward', # Needed to use components [EulerImplicitIntegrationScheme]
2727
'Sofa.Component.SolidMechanics.FEM.Elastic', # Needed to use components [TetrahedronFEMForceField]
2828
'Sofa.Component.SolidMechanics.Spring', # Needed to use components [RestShapeSpringsForceField]
2929
'Sofa.Component.StateContainer', # Needed to use components [MechanicalObject]

examples/organs/liver/liverFineHyperElastic.pyscn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def createScene(rootNode):
1414
rootNode.addObject('RequiredPlugin', name='Sofa.Component.LinearSolver.Direct') # Needed to use components [SparseLDLSolver]
1515
rootNode.addObject('RequiredPlugin', name='Sofa.Component.Mapping.Linear') # Needed to use components [BarycentricMapping]
1616
rootNode.addObject('RequiredPlugin', name='Sofa.Component.Mass') # Needed to use components [UniformMass]
17-
rootNode.addObject('RequiredPlugin', name='Sofa.Component.ODESolver.Backward') # Needed to use components [EulerImplicitIntegrationScheme]
17+
rootNode.addObject('RequiredPlugin', name='Sofa.Component.IntegrationSchemes.Backward') # Needed to use components [EulerImplicitIntegrationScheme]
1818
rootNode.addObject('RequiredPlugin', name='Sofa.Component.SolidMechanics.FEM.HyperElastic') # Needed to use components [TetrahedronHyperelasticityFEMForceField]
1919
rootNode.addObject('RequiredPlugin', name='Sofa.Component.SolidMechanics.Spring') # Needed to use components [RestShapeSpringsForceField]
2020
rootNode.addObject('RequiredPlugin', name='Sofa.Component.StateContainer') # Needed to use components [MechanicalObject]

examples/organs/liver/liverFine_gravity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
'Sofa.Component.LinearSolver.Direct', # Needed to use components [SparseLDLSolver]
1818
'Sofa.Component.Mapping.Linear', # Needed to use components [BarycentricMapping]
1919
'Sofa.Component.Mass', # Needed to use components [UniformMass]
20-
'Sofa.Component.ODESolver.Backward', # Needed to use components [EulerImplicitIntegrationScheme]
20+
'Sofa.Component.IntegrationSchemes.Backward', # Needed to use components [EulerImplicitIntegrationScheme]
2121
'Sofa.Component.SolidMechanics.FEM.Elastic', # Needed to use components [TetrahedronFEMForceField]
2222
'Sofa.Component.SolidMechanics.Spring', # Needed to use components [RestShapeSpringsForceField]
2323
'Sofa.Component.StateContainer', # Needed to use components [MechanicalObject]

examples/organs/liver/liverFine_rotationalActuation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
'Sofa.Component.LinearSolver.Direct', # Needed to use components [SparseLDLSolver]
1818
'Sofa.Component.Mapping.Linear', # Needed to use components [BarycentricMapping]
1919
'Sofa.Component.Mass', # Needed to use components [UniformMass]
20-
'Sofa.Component.ODESolver.Backward', # Needed to use components [EulerImplicitIntegrationScheme]
20+
'Sofa.Component.IntegrationSchemes.Backward', # Needed to use components [EulerImplicitIntegrationScheme]
2121
'Sofa.Component.SolidMechanics.FEM.Elastic', # Needed to use components [TetrahedronFEMForceField]
2222
'Sofa.Component.SolidMechanics.Spring', # Needed to use components [RestShapeSpringsForceField]
2323
'Sofa.Component.StateContainer', # Needed to use components [MechanicalObject]

examples/others/SphereOnAPlane/softSphereFalling.pyscn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def createScene(rootNode):
1515
rootNode.addObject('RequiredPlugin', name='Sofa.Component.Collision.Detection.Intersection') # Needed to use components [LocalMinDistance]
1616
rootNode.addObject('RequiredPlugin', name='Sofa.Component.Collision.Response.Contact') # Needed to use components [CollisionResponse]
1717
rootNode.addObject('RequiredPlugin', name='Sofa.Component.Constraint.Lagrangian.Solver') # Needed to use components [GenericConstraintSolver]
18-
rootNode.addObject('RequiredPlugin', name='Sofa.Component.ODESolver.Backward') # Needed to use components [EulerImplicitIntegrationScheme]
18+
rootNode.addObject('RequiredPlugin', name='Sofa.Component.IntegrationSchemes.Backward') # Needed to use components [EulerImplicitIntegrationScheme]
1919
rootNode.addObject('RequiredPlugin', name='Sofa.Component.Visual') # Needed to use components [VisualStyle]
2020
rootNode.addObject('RequiredPlugin', name='Sofa.Component.Constraint.Lagrangian.Correction') # Needed to use components [GenericConstraintCorrection]
2121
rootNode.addObject('RequiredPlugin', name='Sofa.Component.LinearSolver.Direct') # Needed to use components [SparseLDLSolver]

examples/others/caduceus/caduceusNG.pyscn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def createScene(rootNode):
2222
rootNode.addObject('RequiredPlugin', name='Sofa.Component.LinearSolver.Direct') # Needed to use components [SparseLDLSolver]
2323
rootNode.addObject('RequiredPlugin', name='Sofa.Component.Mapping.Linear') # Needed to use components [BarycentricMapping]
2424
rootNode.addObject('RequiredPlugin', name='Sofa.Component.Mass') # Needed to use components [UniformMass]
25-
rootNode.addObject('RequiredPlugin', name='Sofa.Component.ODESolver.Backward') # Needed to use components [EulerImplicitIntegrationScheme]
25+
rootNode.addObject('RequiredPlugin', name='Sofa.Component.IntegrationSchemes.Backward') # Needed to use components [EulerImplicitIntegrationScheme]
2626
rootNode.addObject('RequiredPlugin', name='Sofa.Component.SolidMechanics.FEM.Elastic') # Needed to use components [TetrahedronFEMForceField]
2727
rootNode.addObject('RequiredPlugin', name='Sofa.Component.StateContainer') # Needed to use components [MechanicalObject]
2828
rootNode.addObject('RequiredPlugin', name='Sofa.Component.Topology.Container.Constant') # Needed to use components [MeshTopology]

examples/others/hexaBeam/hexaBeam.pyscn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def createScene(rootNode):
1717
rootNode.addObject('RequiredPlugin', name='Sofa.Component.LinearSolver.Direct') # Needed to use components [SparseLDLSolver]
1818
rootNode.addObject('RequiredPlugin', name='Sofa.Component.Mapping.Linear') # Needed to use components [BarycentricMapping]
1919
rootNode.addObject('RequiredPlugin', name='Sofa.Component.Mass') # Needed to use components [UniformMass]
20-
rootNode.addObject('RequiredPlugin', name='Sofa.Component.ODESolver.Backward') # Needed to use components [EulerImplicitIntegrationScheme]
20+
rootNode.addObject('RequiredPlugin', name='Sofa.Component.IntegrationSchemes.Backward') # Needed to use components [EulerImplicitIntegrationScheme]
2121
rootNode.addObject('RequiredPlugin', name='Sofa.Component.SolidMechanics.FEM.Elastic') # Needed to use components [HexahedronFEMForceField]
2222
rootNode.addObject('RequiredPlugin', name='Sofa.Component.SolidMechanics.Spring') # Needed to use components [RestShapeSpringsForceField]
2323
rootNode.addObject('RequiredPlugin', name='Sofa.Component.StateContainer') # Needed to use components [MechanicalObject]

examples/softRobots/diamond/diamondRobot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
'Sofa.Component.LinearSolver.Direct', # Needed to use components [SparseLDLSolver]
4343
'Sofa.Component.Mapping.Linear', # Needed to use components [BarycentricMapping]
4444
'Sofa.Component.Mass', # Needed to use components [UniformMass]
45-
'Sofa.Component.ODESolver.Backward', # Needed to use components [EulerImplicitIntegrationScheme]
45+
'Sofa.Component.IntegrationSchemes.Backward', # Needed to use components [EulerImplicitIntegrationScheme]
4646
'Sofa.Component.SolidMechanics.FEM.Elastic', # Needed to use components [TetrahedronFEMForceField]
4747
'Sofa.Component.SolidMechanics.Spring', # Needed to use components [RestShapeSpringsForceField]
4848
'Sofa.Component.StateContainer', # Needed to use components [MechanicalObject]

examples/softRobots/diamond/diamondRobotHyperElastic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
'Sofa.Component.LinearSolver.Direct', # Needed to use components [SparseLDLSolver]
4545
'Sofa.Component.Mapping.Linear', # Needed to use components [BarycentricMapping]
4646
'Sofa.Component.Mass', # Needed to use components [UniformMass]
47-
'Sofa.Component.ODESolver.Backward', # Needed to use components [EulerImplicitIntegrationScheme]
47+
'Sofa.Component.IntegrationSchemes.Backward', # Needed to use components [EulerImplicitIntegrationScheme]
4848
'Sofa.Component.SolidMechanics.FEM.Elastic', # Needed to use components [TetrahedronFEMForceField]
4949
'Sofa.Component.SolidMechanics.Spring', # Needed to use components [RestShapeSpringsForceField]
5050
'Sofa.Component.StateContainer', # Needed to use components [MechanicalObject]

0 commit comments

Comments
 (0)