博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
matlab自动运行,matlab编程自动运行hfss
阅读量:4955 次
发布时间:2019-06-12

本文共 1972 字,大约阅读时间需要 6 分钟。

clear all;

false = 0;

true = 1;

% HFSS执行路径

hfssExePath = 'D:"Program Files"\Ansoft\HFSS10\hfss.exe';

% 临时文件路径

tmpPrjFile = 'E:\ansoft\temp\my_conicalhorn_3.6GHz.hfss';

%tmpDataFile = 'E:\ansoft\temp\tmpData.dat';

tmpScriptFile = 'E:\ansoft\temp\my_conicalhorn_3.6GHz.vbs';

unit = 'mm'; % 单位设置

freq = 3.6e9; % 工作频率

lambda = 0.3e9/freq; % 工作波长

% 圆柱波导尺寸

wgr = 62.5; % 波导半径

wgh = 125; % 波导长度

% 小圆台尺寸

sbr = wgr; % 底半径

str = 100; % 顶半径

sh = 150; % 高度

% 过渡圆波导

gwgr = str;

gwgh = 100;

% 大圆台尺寸

bbr = gwgr; % 底半径

btr = 300; % 顶半径

bh = 1000; % 高度

% 小圆片尺寸

ssr = wgr; % 圆片半径

ssh = -1; % 圆片高度

% 创建一个新的HFSS临时脚本文件

fid = fopen(tmpScriptFile, 'wt'); % 'wt'表示以文本模式打开文件,可写,覆盖原有内容

% 创建一个新的工程并插入一个新的设计

hfssNewProject(fid);

hfssInsertDesign(fid, 'conicalhorn_3.6GHz');

% 创建圆柱波导

hfssCylinder(fid, 'Cylinder1', 'Z', [0, 0, 0], wgr, wgh, unit);

% 创建小圆台

hfssCone(fid, 'Cone1', 'Z', [0, 0, wgh], sbr, str, sh, unit);

% 创建过渡波导

hfssCylinder(fid, 'Cylinder2', 'Z', [0, 0, (wgh+sh)], gwgr, gwgh, unit);

% 创建大圆台

hfssCone(fid, 'Cone2', 'Z', [0, 0, (wgh+sh+gwgh)], bbr, btr, bh, unit);

% 组合圆柱和圆台

hfssUnite(fid, {'Cylinder1','Cone1','Cylinder2','Cone2'});

% 设置边界条件PE

hfssAssignPE_face(fid, 'horn_pec', [7,16,25,34]);

% 喇叭尾部小圆片

hfssCylinder(fid, 'small_Cylinder', 'Z', [0, 0, 0], ssr, ssh, unit);

% 设置圆片的材料为pec

hfssAssignMaterial(fid, 'small_Cylinder', 'pec');

% 创建辐射圆柱

hfssCylinder(fid, 'Cylinder_Radiation', 'Z', [0, 0, ssh], (btr+lambda/4.0*1000), (wgh+sh+gwgh+bh+lambda/4.0*1000), unit);

% 添加辐射边界条件

hfssAssignRadiation(fid, 'Radiation', 'Cylinder_Radiation');

% 添加激励waveport

hfssAssignWavePort_face(fid, 'waveport', 8, 1, true, [0,-wgr,0], [0,wgr,0], unit);

% 添加求解安装

hfssInsertSolution(fid, 'horn_solve', freq/1e9);

% 设置远场球坐标系

hfssFarFieldSphere(fid, 'FFSphere', -180, 180, 2, 0, 360, 2);

% 求解计算

%hfssSolveSetup(fid, 'horn_3.6GHz');

% 保存工程到临时文件夹

hfssSaveProject(fid, tmpPrjFile, true);

% 关闭HFSS脚本文件

fclose(fid);

% 利用HFSS执行脚本程序

%disp('Solving using HFSS .');

%hfssExecuteScript(hfssExePath, tmpScriptFile);

转载地址:http://nkyhp.baihongyu.com/

你可能感兴趣的文章
{width=200px;height=300px;overflow:hidden}
查看>>
C#生成随机数
查看>>
CSS基础学习 20.CSS媒体查询
查看>>
2019春季第十一周作业
查看>>
洛谷P4591 [TJOI2018]碱基序列 【KMP + dp】
查看>>
iOS CoreData介绍和使用(以及一些注意事项)
查看>>
OS笔记047代理传值和block传值
查看>>
Android应用程序与SurfaceFlinger服务的连接过程分析
查看>>
coco2dx服务器简单例子
查看>>
Java回顾之多线程
查看>>
sqlite
查看>>
机电行业如何进行信息化建设
查看>>
Windows Azure Platform Introduction (4) Windows Azure架构
查看>>
【转】chrome developer tool 调试技巧
查看>>
mahout运行测试与kmeans算法解析
查看>>
互相给一巴掌器
查看>>
Android SDK环境变量配置
查看>>
VM10虚拟机安装图解
查看>>
9、总线
查看>>
Git 笔记 - section 1
查看>>