⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hfsscylinder.m

📁 用matlab调用HFSS代码hfssapi.rar
💻 M
字号:
% ----------------------------------------------------------------------------% function hfssCylinder(fid, Name, Axis, Center, Radius, Height, Units)% % Description :% -------------% Creates the VB script necessary to model a cylinder in HFSS.%% Parameters :% ------------% fid     - file identifier of the HFSS script file.% Name    - name of the cylinder (in HFSS).% Center  - center of the cylinder (specify as [x, y, z]). This is also the %           starting point of the cylinder.% Axis    - axis of the cylinder (specify as 'X', 'Y', or 'Z').% Radius  - radius of the cylinder (scalar).% Height  - height of the cylidner (from the point specified by Center).% Units   - specify as 'in', 'mm', 'meter' or anything else defined in HFSS.% % Note :% ------%% Example :% ---------% fid = fopen('myantenna.vbs', 'wt');% ... % hfssCylinder(fid, 'Cyl1', 'Z', [0, 0, 0], 0.1, 10, 'in');% ----------------------------------------------------------------------------% ----------------------------------------------------------------------------% This file is part of HFSS-MATLAB-API.%% HFSS-MATLAB-API is free software; you can redistribute it and/or modify it % under the terms of the GNU General Public License as published by the Free % Software Foundation; either version 2 of the License, or (at your option) % any later version.%% HFSS-MATLAB-API is distributed in the hope that it will be useful, but % WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY % or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License % for more details.%% You should have received a copy of the GNU General Public License along with% Foobar; if not, write to the Free Software Foundation, Inc., 59 Temple % Place, Suite 330, Boston, MA  02111-1307  USA%% Copyright 2004, Vijay Ramasami (rvc@ku.edu)% ----------------------------------------------------------------------------function hfssCylinder(fid, Name, Axis, Center, Radius, Height, Units)% Cylinder Parameters.fprintf(fid, '\n');fprintf(fid, 'oEditor.CreateCylinder _\n');fprintf(fid, 'Array("NAME:CylinderParameters", _\n');fprintf(fid, '"XCenter:=", "%f%s", _\n', Center(1), Units);fprintf(fid, '"YCenter:=", "%f%s", _\n', Center(2), Units);fprintf(fid, '"ZCenter:=", "%f%s", _\n', Center(3), Units);fprintf(fid, '"Radius:=", "%f%s", _\n', Radius, Units);fprintf(fid, '"Height:=", "%f%s", _\n', Height, Units);fprintf(fid, '"WhichAxis:=", "%s"), _\n', upper(Axis));% Cylinder Properties.fprintf(fid, 'Array("NAME:Attributes", _\n'); fprintf(fid, '"Name:=", "%s", _\n', Name);fprintf(fid, '"Flags:=", "", _\n');fprintf(fid, '"Color:=", "(132 132 193)", _\n');fprintf(fid, '"Transparency:=", 0, _\n');fprintf(fid, '"PartCoordinateSystem:=", "Global", _\n');fprintf(fid, '"MaterialName:=", "vacuum", _\n');fprintf(fid, '"SolveInside:=", true)\n');fprintf(fid, '\n');

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -