필터 지우기
필터 지우기

SimBiology sensitivity analysis warning

조회 수: 3 (최근 30일)
Wendy Qiao
Wendy Qiao 2018년 8월 21일
편집: Priya Moorthy 2018년 8월 21일
Hi,
I kept getting the following warning message in SimBiology Desktop when I perform a simulation task, "No outputs have been specified for sensitivity analysis. The RuntimeOption.StateToLog in the active configset will be used as default outputs. This default behavior will be deprecated in a future release of SimBiology".
Is the warning message something that I should be worried about? How to I configure the model in SimBiology Desktop to avoid the warning message?
Thank you, W

답변 (1개)

Priya Moorthy
Priya Moorthy 2018년 8월 21일
편집: Priya Moorthy 2018년 8월 21일
Hi, Wendy,
This warning message is one that is usually displayed at the command line if users are simulating a model and have turned on sensitivity analysis without specifying the inputs and outputs in the configuration settings. Usually, we don't expect users working entirely within the desktop to encounter this warning, since the desktop doesn't allow running a sensitivity analysis task without specifying both inputs and outputs.
However, if you have a model that has been imported from or exported to the command line, it is possible to change the configuration settings outside the desktop. The warning you saw suggests that sensitivity analysis has been turned on for the model's default configuration settings. If you export the model from the desktop as m1, you can turn off sensitivity analysis in the configuration settings from the command line:
cs = getconfigset(m1, 'default');
cs.SolverOptions.SensitivityAnalysis = false;
cs.SensitivityAnalysisOptions.Inputs = [];
cs.SensitivityAnalysisOptions.Outputs = [];
Best,
Priya

커뮤니티

더 많은 답변 보기:  SimBiology Community

카테고리

Help CenterFile Exchange에서 Perform Sensitivity Analysis에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by