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")
  1. Get a “handle” on the POSTFEKO application.
    myApplication = pf.GetApplication()
  2. Start a new empty project.
    myApplication:NewProject()
  3. Open the .fek file of the patch antenna already solved.
    myApplication:OpenFile("Example-I01-Introduction_to_Application_Automation.fek")