COMSOL 参数化仿真自动导出报告

在使用COMSOL进行研究工作的过程中,涉及到很多需要对多组参数进行仿真,输出对应参数仿真结果的报告,在这个过程中可以使用COMSOL 提供的matlab脚本进行参数化结果的输出。

%% 0 清除所有数据
clear all;clc;
%% 1 打开mph文件
model = mphopen('FuelCell0825b.mph');

%% 2 输入需要参数化研究的参数
spacing_Outlet = [4000 1800 823 378 170 74.7 30.9];
width_Outlet = [992  625  394  248  156  98  62];

%% 3 for循环,对所有参数进行参数化研究仿真。
for N=3:9
    %% 3.1 设定参数
    model.param('par2').set('N', num2str(N));
    model.param('par2').set('spacing_Outlet', strcat(num2str(spacing_Outlet(N-2)),'[um]'));
    model.param('par2').set('width_Outlet', strcat(num2str(width_Outlet(N-2)),'[um]'));
    %% 3.2 运行研究
    model.sol('sol1').study('std1');
    model.sol('sol1').attach('std1');
    model.sol('sol1').runAll;
    %% 3.3 导出word报告
    model.result.report('rpt1').set('filename', ['E:\08 Science Compass\2208082536 ' native2unicode(hex2dec({'9e' 'c4'}), 'unicode')  native2unicode(hex2dec({'63' '2f'}), 'unicode')  native2unicode(hex2dec({'4e' '91'}), 'unicode') ' ' native2unicode(hex2dec({'71' 'c3'}), 'unicode')  native2unicode(hex2dec({'65' '99'}), 'unicode')  native2unicode(hex2dec({'75' '35'}), 'unicode')  native2unicode(hex2dec({'6c' '60'}), 'unicode') '\N=' num2str(N) '.docx']);
    model.result.report('rpt1').run;
    fprintf("Export N = %d",N)
end

小广告:COMSOL相关问题可以加琳泓大佬的群去找群友讨论

开放群:566811107
群一:836281296
群二:594368389
群三:1080606488
群四: 678357196

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注