Digsilent Powerfactory User Manual Work Free · Fully Tested
Select the Short-Circuit Calculation tool. Choose the appropriate standard (IEC 60909, ANSI C37, or Complete Method).
Tip: Use color-coding by voltage level () to visually verify network topology. Step 4: Attribute Mapping digsilent powerfactory user manual work
Check the box for or "Show Class Names" . Select the Short-Circuit Calculation tool
Open the , Index: "Frequency Stability." Read the definition. It notes that for systems with high inverter-based resources (IBR), traditional swing equations may not apply. The manual directs you to Chapter 22: "Modeling of Wind Generators." Step 4: Attribute Mapping Check the box for
: Export voltage violations, line overloads, and short-circuit levels directly into structured CSV or Excel reports.
import powerfactory as pf # Initialize application app = pf.GetApplication() project = app.GetActiveProject() # Run a load flow calculation ldf = app.GetFromStudyCase("ComLdf") return_code = ldf.Execute() if return_code == 0: app.PrintPlain("Load flow calculated successfully.") else: app.PrintFault("Calculation failed.") Use code with caution. Essential Scripting Automation Tasks