@@ -308,7 +308,7 @@ Defines global properties of the system, such as the gravity field. Exactly one
308308| `gravityField` | [`UniformGravityField`](@ref)`()` |
309309| `useOptimizedStructure` | true |
310310| `enableContactDetection` | true |
311- | `mpr_tol_rel ` | 1.0e-20 |
311+ | `mprTolerance ` | 1.0e-20 |
312312| `elasticContactReductionFactor` | 1.0 |
313313| `enableVisualization` | true |
314314| `animationFile` | nothing |
@@ -338,7 +338,7 @@ Defines global properties of the system, such as the gravity field. Exactly one
338338
339339- `enableContactDetection::Bool`: = true, if contact detection is enable, see [Collision Handling](@ref).
340340
341- - `mpr_tol_rel ::1.0e-20`: Local tolerance used for terminating the mpr algorithm. Changing this value might improve speed.
341+ - `mprTolerance ::1.0e-20`: Local tolerance used for terminating the mpr algorithm. Changing this value might improve speed.
342342
343343- `elasticContactReductionFactor::Float64`: (> 0.0)
344344 - ``usedContactCompliance = contactCompliance * elasticContactReductionFactor``
@@ -421,7 +421,7 @@ mutable struct Scene <: Modia3D.AbstractScene
421421 function Scene (;gravityField = UniformGravityField (),
422422 useOptimizedStructure = true ,
423423 enableContactDetection = true ,
424- mpr_tol_rel = 1.0e-20 ,
424+ mprTolerance = 1.0e-20 ,
425425 elasticContactReductionFactor = 1.0 ,
426426 gap = 0.001 ,
427427 enableVisualization = true ,
@@ -443,7 +443,7 @@ mutable struct Scene <: Modia3D.AbstractScene
443443
444444 sceneOptions = SceneOptions (gravityField = gravityField,
445445 useOptimizedStructure = useOptimizedStructure,
446- contactDetection = ContactDetectionMPR_handler (tol_rel = mpr_tol_rel ),
446+ contactDetection = ContactDetectionMPR_handler (tol_rel = mprTolerance ),
447447 nVisualContSupPoints = nVisualContSupPoints,
448448 gap = gap,
449449 enableContactDetection = enableContactDetection,
0 commit comments