Creating a New POSTFEKO Project
Define a new POSTFEKO project and open a .fek file.
myApplication = pf.GetApplication() myApplication:NewProject() myApplication:OpenFile("Example-I01-Introduction_to_Application_Automation.fek")
-
Get a
handle
on the POSTFEKO application.myApplication = pf.GetApplication()
-
Start a new empty project.
myApplication:NewProject()
-
Open the .fek file of the
patch antenna already solved.
myApplication:OpenFile("Example-I01-Introduction_to_Application_Automation.fek")