Global Model Calibration of Thermal Conduction
Thermal conduction model
Here we present an example of integrating the ModelingToolkitStandardLibrary with JuliaSimModelOptimizer by using the thermal conduction example. This example demonstrates the thermal response of two masses connected by a conducting element. The two masses have the same unknown heat capacity but different initial temperatures (T1=100 [°C]
, T2=0 [°C]
). The mass with the higher temperature will cool off while the mass with the lower temperature heats up. They will each asymptotically approach the calculated temperature T_final
that results from dividing the total initial energy in the system by the sum of the heat capacities of each element. The goal of this example is to find the unknown heat capacitance and also quantify its uncertainty.
Julia environment
For this example, we will need the following packages:
Module | Description |
---|---|
JuliaSimModelOptimizer | The high-level library used to formulate our problem and perform automated model discovery |
ModelingToolkit | The symbolic modeling environment |
ModelingToolkitStandardLibrary | Library for using standard modeling components |
OrdinaryDiffEq | The numerical differential equation solvers |
DataFrames | For converting simulation into a Dataframe |
Plots | The plotting and visualization library |
using JuliaSimModelOptimizer
using ModelingToolkit
using ModelingToolkitStandardLibrary.Thermal
using OrdinaryDiffEq
using DataFrames
using Plots
Model setup
@parameters t
C = 15.0
@named mass1 = HeatCapacitor(C = C, T = 373.15)
@named mass2 = HeatCapacitor(C = C, T = 273.15)
@named conduction = ThermalConductor(G = 10)
@named Tsensor1 = TemperatureSensor()
@named Tsensor2 = TemperatureSensor()
connections = [
connect(mass1.port, conduction.port_a),
connect(conduction.port_b, mass2.port),
connect(mass1.port, Tsensor1.port),
connect(mass2.port, Tsensor2.port),
]
@named model = ODESystem(connections, t, systems = [mass1, mass2, conduction, Tsensor1, Tsensor2])
sys = structural_simplify(model)
\[ \begin{align} \frac{\mathrm{d} mass1_{+}T\left( t \right)}{\mathrm{d}t} =& mass1_{+}der_{T}\left( t \right) \\ \frac{\mathrm{d} mass2_{+}T\left( t \right)}{\mathrm{d}t} =& mass2_{+}der_{T}\left( t \right) \end{align} \]
Data Setup
Now, lets simulate to generate some data.
prob = ODEProblem(sys, [mass1.C => 14.0, mass2.C => 14.0], (0, 100.0))
sol = solve(prob, Tsit5())
data = DataFrame(sol)
first(data, 5)
Row | timestamp | mass1₊T | mass2₊T |
---|---|---|---|
Float64 | Float64 | Float64 | |
1 | 0.0 | 373.15 | 273.15 |
2 | 0.125024 | 364.972 | 281.328 |
3 | 0.385166 | 351.991 | 294.309 |
4 | 0.715191 | 341.149 | 305.151 |
5 | 1.13432 | 333.041 | 313.259 |
Defining Experiment and InverseProblem
We next use the data to setup an Experiment
.
experiment = Experiment(data, sys)
Experiment for model with no fixed parameters or initial conditions.
The simulation of this experiment is given by:
ODEProblem with uType Vector{Float64} and tType Float64. In-place: true
timespan: (0.0, 100.0)
Next, we specify an InverseProblem
of interest to us where we specify the parameters we want to recover and their bounds.
invprob = InverseProblem(experiment, [mass1.C => (10, 20), mass2.C => (10, 20)])
InverseProblem with one experiment with 2 elements in the search space.
Parametric Uncertainty Quantification
We now run the parameteric uncertainty quantification using the parametric_uq
function. We specify the InverseProblem
and the StochGlobalOpt
algorithm. We also specify the sample size for the analysis.
ps = parametric_uq(invprob, StochGlobalOpt(maxiters = 1000), sample_size = 50)
Parametric uncertainty ensemble of length 50 computed in 2 minutes and 3 seconds.
┌─────────────────┬─────────┬─────────┐
│ Final Objective │ mass1₊C │ mass2₊C │
├─────────────────┼─────────┼─────────┤
│ 0.381881 │ 14.0002 │ 14.0002 │
│ 0.381881 │ 14.0002 │ 14.0002 │
│ 0.381881 │ 14.0002 │ 14.0002 │
│ 0.381881 │ 14.0002 │ 14.0002 │
│ 0.381881 │ 14.0002 │ 14.0002 │
│ 0.381881 │ 14.0002 │ 14.0002 │
│ 0.381881 │ 14.0002 │ 14.0002 │
│ 0.381881 │ 14.0002 │ 14.0002 │
│ 0.381881 │ 14.0002 │ 14.0002 │
│ 0.381881 │ 14.0002 │ 14.0002 │
│ 0.381881 │ 14.0002 │ 14.0002 │
│ 0.381881 │ 14.0002 │ 14.0002 │
│ 0.381881 │ 14.0002 │ 14.0002 │
│ 0.381881 │ 14.0002 │ 14.0002 │
│ 0.381881 │ 14.0002 │ 14.0002 │
│ 0.381881 │ 14.0002 │ 14.0002 │
│ ⋮ │ ⋮ │ ⋮ │
└─────────────────┴─────────┴─────────┘
34 rows omitted
Visualization
We can see the results of the analysis by plotting its histogram.
plot(ps, layout = (2, 1), bins = 10, max_freq = [20, 20], legend = :best, size = (1000, 1000))
We can see the distribution for the parameters is concentrated near their true values.