• 易迪拓培训,专注于微波、射频、天线设计工程师的培养
首页 > HFSS > HFSS help > UDD Script Libraries

HFSS15: UDD Script Libraries

录入:edatop.com     点击:

Base classes and data files shared between similar UDDs can be organized to reuse the code in a better way. All script-library and other support files need to be in a Lib sub-directory under the UserDefinedDefinitions directory. Any .py files found in such Lib directories are ignored and not displayed in the GUI as a valid UDD choice. For a UDD script at any given directory depth, all Lib directories in its parent directories will be automatically added to the system include path (and so, any support script files from any Lib directory till the top level UserDefinedDefintions directory can be imported)

The UDD functionality uses IronPython so we have access to all the .NET assembles. If needed, any subset of the UDD functionality can be implemented in any .NET language and used by the UDD script. There are simple rules to follow to achieve this.

1. Build your .NET assembly for .NET 2.0 runtime.

2. Drop the built assembly in any Lib directory upstream of the UDD script location: that is, if you have your UDD script in C:UsersxPersonalLibUserDefinedDefintionsabcmyudd.py and have a .NET assembly called com.Acme.UDDLib You can keep the .NET assembly under

• UserDefinedDefintionsLib,

• UserDefinedDefintionsaLib,

• UserDefinedDefintionsabLib

• UserDefinedDefintionsabcLib

3. Add the following line to your python script

• Import clr

• clr.AddReference(“com.Acme.UDDLib”)

• import com.Acme.UDDLib –or-- from com.Acme.UDDLib import * etc

If for some reason you cannot place the .NET assemblies into a Lib directory under UserDefinedDefintions, you need to do a couple more steps before step 3 listed above.

Import sys

sys.path.append(“full path to your .NET assembly location”)

HFSS 学习培训课程套装,专家讲解,视频教学,帮助您全面系统地学习掌握HFSS

上一篇:Troubleshooting GetThisJobID
下一篇:Troubleshooting GetUseRsmForEngineLaunch

HFSS视频培训课程推荐详情>>
HFSS教程推荐

  网站地图