Results ({{ name }})
{% if models[name].final_estimator == 'parameter estimation' %}
Parameter Results
{% if models[name].param_data|length == 0 %}
The current model does not have any parameter information
{% else %}
Parameters fit using KIPET alongside their provided data.
Name |
Optimal Value |
{% if models[name].confidence is not none %}
+/- (95% CI) |
{% endif %}
Fixed |
Bounds |
Units |
Description |
{% for param in models[name].param_data %}
{{ param.name }} |
{{ "%.8e"|format(param.value) }} |
{% if models[name].confidence is not none %}
{% if not param.fixed %}
{{ "%.8e"|format(models[name].confidence[param.name]) }}
{% else %}
-
{% endif %}
|
{% endif %}
{{ param.fixed }} |
({{ param.lb}}, {{ param.ub }}) |
{{ param.units }} |
{{ param.description }} |
{% endfor %}
{% endif %}
{% endif %}
{% if models[name].covariance is not none %}
Parameter Covariances
Parameter covariances predicted from inverse reduced Hessian.
|
{% for param in models[name].covariance.columns %}
{{ param }} |
{% endfor %}
{% for param in models[name].covariance.columns %}
{{ param }} |
{% for param2 in models[name].covariance.columns %}
{{ "%.8e"|format(models[name].covariance[param][param2]) }} |
{% endfor %}
{% endfor %}
{% endif %}
{% if models[name].final_estimator != 'simulation' %}
Component Variances
{% if models[name].variances|length == 0 %}
The current model does not have any variance information
{% else %}
{% if models[name].opt_data.variance_used %}
{% if models[name].opt_data.var_method == 'originalchenetal' %}
Variances calculated using the method in Chen et al. 2016
{% else %}
Variances calculated using the method in Short et al. 2020
{% endif %}
{% else %}
Variances provided by the user
{% endif %}
Name |
Variance |
{% for param, variance in models[name].variances.items() %}
{{ param }} |
{{ "%.5e"|format(variance) }} |
{% endfor %}
{% endif %}
{% endif %}
{% if models[name].opt_data.var_method == 'direct_sigmas' %}
Calculated Variances
These values were calculated using the direct sigma method. (Short et al. 2020)
{% for key, value in models[name].delta_results.items() %}
Point #{{ key }}
Name |
Value |
{% for key_, value_ in value.items() %}
{{ key_ }} |
{{ value_ }} |
{% endfor %}
{% endfor %}
{% endif %}
{% if models[name].bounds is not none and models[name].bounds|length > 0 %}
Profile Bounds
User defined profile bounds
Name |
Profile |
Range |
Bounds |
{% for stat in models[name].bounds %}
{{ stat[1] }} |
{{ stat[0] }} |
{{ stat[2] }} |
{{ stat[3] }} |
{% endfor %}
{% endif %}
Charts
{% for chart in models[name].chart_C_files %}
File
{% endfor %}
{% for chart in models[name].chart_S_files %}
File
{% endfor %}
{% for chart in models[name].chart_U_files %}
{% if loop.index == 1 %}
Show State Charts
{% endif %}
{% endfor %}
{% for chart in models[name].chart_Y_files %}
{% if loop.index == 1 %}
Show DAE Charts
{% endif %}
{% endfor %}
{% if models[name].final_estimator == 'parameter estimation' %}
Diagnostics
Show Diagnostics
Model statistics related to fit.
Statistic |
Value |
Description |
{% for stat in models[name].diagnostics %}
{{ stat.name }} |
{{ "%.6e"|format(stat.value) }} |
{{ stat.description }} |
{% endfor %}
{% if models[name].res_chart is not none %}
File
{% endif %}
{% if models[name].par_chart is not none %}
File
{% endif %}
Close Diagnostics
{% endif %}