Why do I get an error 'The file name is too long' when creating harness model in Simulink Design Verifier 2.5 (R2013b)?

조회 수: 23 (최근 30일)
I am generating the harness model for a model named 'KnxSimInt_SPM_CL_InvConv.slx' and using sldvblockreplacement.m to replace blocks. During building, I receive an error:
Making simulation target "KnxSimInt_SPM_CL_InvConv_replacement_sfun", ...
Make successful for machine: "KnxSimInt_SPM_CL_InvConv_replacement"
The file name is too long.
0 file(s) copied
It seems that Simulink adds a postfix '_replacement' on my original model name. How can I avoid this error. 

채택된 답변

MathWorks Support Team
MathWorks Support Team 2014년 2월 12일
The maximum length allowed for MATLAB identifiers, which include variable, function and model names, is 63 in R2013b. You can call NAMELENGTHMAX to get the maximum identifier length.
During block replacement, in order to avoid name length error, following workarounds are available:
1. Reduce original model name length less than 63.
2. Rename postfix of output model. Click Simulation -> Model Configuration Parameter -> Design Verifier -> Block Replacements -> File path of the output. The default name is '$ModelName$_replacement'. You can modify it like '$ModelName $_rpc'. 
3. If you are using sldvblockreplacement.m scripts, execute:
opts = sldvoptions; 
opts.BlockReplacement = 'on' 
opts.BlockReplacementModelFileName = '$ModelName$_rpc' 
[status, newmodel] = sldvblockreplacement('KnxSimInt_SPM_CL_InvConv', opts); 

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Best Practices for Simulink Design Verifier Analysis에 대해 자세히 알아보기

제품


릴리스

R2013b

Community Treasure Hunt

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

Start Hunting!

Translated by