Skip to content

Commit

Permalink
sy - updating det calib example
Browse files Browse the repository at this point in the history
  • Loading branch information
yisangriB committed Sep 29, 2022
1 parent de97977 commit 6c2a5c6
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Examples/Examples.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down
22 changes: 12 additions & 10 deletions Examples/qfem-0006/src/input.json
Original file line number Diff line number Diff line change
Expand Up @@ -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":{
Expand Down

0 comments on commit 6c2a5c6

Please sign in to comment.