필터 지우기
필터 지우기

masking thermal mass component with initial targets and nominal values with checkbox activation and deactivation

조회 수: 2 (최근 30일)
Hi Team,
I want to mask a thermal mass from simscape thermal library with all the parameters which are avaiable inside thermal mass (Mass, Cp, Initial Targets (activation and providing priority dropdown and provide values) also nominal values (activation and deactivation and providing priority dropdown and provide values).
Please explain how to do so.

답변 (1개)

akshatsood
akshatsood 2023년 11월 30일
편집: akshatsood 2023년 12월 2일
I understand that you are seeking guidance on masking a "Thermal Mass" block from the Simscape Thermal Library, including all available parameters. However, the "Thermal Mass" block is already a mask. You can easily verify this by examining the "Mask" and "MaskParameters" properties for the block. For instance, consider a Simulink model "mdl" containing the "Thermal Mass" block. To explore these properties, you can utilize the "get_param" function. Here is a code snippet for reference.
blk = 'mdl/Thermal Mass';
isBlkMasked = get_param(blk, 'Mask'); % returns 'on'
% outputs all the mask parameters
blkMaskParameters = get_param(blk, 'MaskParameters');
Upon investigation, it is evident that the "Thermal Mass" block already has a mask.
If this does not correspond to your intended query, could you kindly elaborate on your concern? This will enable me to address the issue more effectively.
I hope this helps.

카테고리

Help CenterFile Exchange에서 Thermal Elements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by