Tagged: 2020 R2, General (HFSS), hfss
-
-
January 31, 2023 at 9:26 am
FAQ
ParticipantHFSS Design で境界条件の設定名をスクリプトで取得することが可能です。 使用するコマンド ・ 全境界条件の設定名とタイプ名を取得する:GetBoundaries() ・ 境界条件のタイプを指定して設定名を取得する:GetBoundariesOfType(<BoundaryType>) まず、設定されている全ての境界条件の設定名とタイプ名を取得して MessageBox で表示し、 次に、Lumped RLC タイプの境界条件の設定名を取得して MessageBox で表示する VBS のサンプルコードを下記に示します。 <注意>本サンプルコードは、全ての動作を保証するものではありません。 ——————————————————————– Set oAnsoftApp = CreateObject(“Ansoft.ElectronicsDesktop”) Set oDesktop = oAnsoftApp.GetAppDesktop() oDesktop.RestoreWindow Set oProject = oDesktop.GetActiveProject() Set oDesign = oProject.GetActiveDesign() Set oModule = oDesign.GetModule(“BoundarySetup”) boundary_array = oModule.GetBoundaries() for i=0 to ubound(boundary_array) msgbox boundary_array(i) next rlc_array = oModule.GetBoundariesOfType(“Lumped RLC”) for i=0 to ubound(rlc_array) msgbox rlc_array(i) next ——————————————————————– キーワード: Script, スクリプト, VBS, IronPython, GetBoundaries, GetBoundariesOfType
-

Introducing Ansys Electronics Desktop on Ansys Cloud
The Watch & Learn video article provides an overview of cloud computing from Electronics Desktop and details the product licenses and subscriptions to ANSYS Cloud Service that are...

How to Create a Reflector for a Center High-Mounted Stop Lamp (CHMSL)
This video article demonstrates how to create a reflector for a center high-mounted stop lamp. Optical Part design in Ansys SPEOS enables the design and validation of multiple...

Introducing the GEKO Turbulence Model in Ansys Fluent
The GEKO (GEneralized K-Omega) turbulence model offers a flexible, robust, general-purpose approach to RANS turbulence modeling. Introducing 2 videos: Part 1 provides background information on the model and a...

Postprocessing on Ansys EnSight
This video demonstrates exporting data from Fluent in EnSight Case Gold format, and it reviews the basic postprocessing capabilities of EnSight.
- バッチ処理方法を教えてください.
- モデルファイルが破損して開けません 対処方法をおしえてください
- Icepakで使える乱流モデルの「Zero Equation」とは何ですか?
- Icepakで使える乱流モデルの「RNG」とは何ですか?
- Icepak で使える乱流モデルの「Enchanced RNG」とは何ですか?
- Icepakで使える乱流モデルの「Two Equation」とは何ですか?
- Icepak で使える乱流モデルの「Spalart-Allmaras」とは何ですか?
- メッシュの並列化の設定方法を教えて下さい
- 「ANSYS Electronics Desktop」アイコンで起動させても、Twin Builder用のデスクトップしか起動しない
- Icepak で使える乱流モデルの「Enhanced two equation」とは何ですか?
© 2023 Copyright ANSYS, Inc. All rights reserved.