From 6c2a5c632c019f6feb9954bfd30ac16f6eb06a09 Mon Sep 17 00:00:00 2001 From: yisangriB Date: Thu, 29 Sep 2022 15:19:41 -0700 Subject: [PATCH] sy - updating det calib example --- Examples/Examples.json | 4 ++-- Examples/qfem-0006/src/input.json | 22 ++++++++++++---------- 2 files changed, 14 insertions(+), 12 deletions(-) diff --git a/Examples/Examples.json b/Examples/Examples.json index d9f01d07..4e981c0e 100644 --- a/Examples/Examples.json +++ b/Examples/Examples.json @@ -11,12 +11,12 @@ "inputFile": "qfem-0002/src/input.json" }, { - "name": "Basic modeling with Python", + "name": "Basic Modeling with Python", "description": "This example illustrates how Python scripting can be used with quoFEM to express general mathematical models without the use of a dedicated finite element analysis engine.", "inputFile": "qfem-0005/src/input.json" }, { - "name": "Optimization", + "name": "Deterministic Calibration", "description": "In this example, a **parameter estimation** routine is used to solve a classical optimization problem for which an analytic solution is known.", "inputFile": "qfem-0006/src/input.json" }, diff --git a/Examples/qfem-0006/src/input.json b/Examples/qfem-0006/src/input.json index a877f294..905c56c9 100644 --- a/Examples/qfem-0006/src/input.json +++ b/Examples/qfem-0006/src/input.json @@ -12,24 +12,26 @@ }, "randomVariables": [ { + "distribution": "ContinuousDesign", + "initialpoint": 0, + "inputType": "Parameters", + "lowerbound": -2, "name": "X", - "title": "first variable", - "distribution": "Uniform", - "lowerbound": -2.0, "refCount": 1, - "upperbound": 2.0, + "upperbound": 2, "value": "RV.X", - "variableClass": "Uncertain" + "variableClass": "Design" }, { + "distribution": "ContinuousDesign", + "initialpoint": 0, + "inputType": "Parameters", + "lowerbound": -2, "name": "Y", - "title": "second variable", - "distribution": "Uniform", - "lowerbound": -2.0, "refCount": 1, - "upperbound": 2.0, + "upperbound": 2, "value": "RV.Y", - "variableClass": "Uncertain" + "variableClass": "Design" } ], "FEM":{