diff --git a/examples/low_frequency/general/eddy_current.py b/examples/low_frequency/general/eddy_current.py index 94184957c..741fee201 100644 --- a/examples/low_frequency/general/eddy_current.py +++ b/examples/low_frequency/general/eddy_current.py @@ -16,7 +16,7 @@ # Define constants. -AEDT_VERSION = "2024.2" +AEDT_VERSION = "2025.1" NUM_CORES = 4 NG_MODE = False # Open AEDT UI when it is launched. diff --git a/examples/low_frequency/general/electrostatic.py b/examples/low_frequency/general/electrostatic.py index 598008ffb..a77c04ead 100644 --- a/examples/low_frequency/general/electrostatic.py +++ b/examples/low_frequency/general/electrostatic.py @@ -19,7 +19,7 @@ # Define constants. -AEDT_VERSION = "2024.2" +AEDT_VERSION = "2025.1" NUM_CORES = 4 NG_MODE = False diff --git a/examples/low_frequency/general/external_circuit.py b/examples/low_frequency/general/external_circuit.py index 53c731ddf..6e79d2024 100644 --- a/examples/low_frequency/general/external_circuit.py +++ b/examples/low_frequency/general/external_circuit.py @@ -14,7 +14,7 @@ # Define constants. -AEDT_VERSION = "2024.2" +AEDT_VERSION = "2025.1" NUM_CORES = 4 NG_MODE = False # Open AEDT UI when it is launched. diff --git a/examples/low_frequency/general/resistance.py b/examples/low_frequency/general/resistance.py index 6023cef0c..7968e5392 100644 --- a/examples/low_frequency/general/resistance.py +++ b/examples/low_frequency/general/resistance.py @@ -18,7 +18,7 @@ # Define constants. -AEDT_VERSION = "2024.2" +AEDT_VERSION = "2025.1" NG_MODE = False NUM_CORES = 4 diff --git a/examples/low_frequency/general/twin_builder/dynamic_rom.py b/examples/low_frequency/general/twin_builder/dynamic_rom.py index 2f8ffc901..afa5baa09 100644 --- a/examples/low_frequency/general/twin_builder/dynamic_rom.py +++ b/examples/low_frequency/general/twin_builder/dynamic_rom.py @@ -22,7 +22,7 @@ # Define constants. -AEDT_VERSION = "2024.2" +AEDT_VERSION = "2025.1" NUM_CORES = 4 NG_MODE = False # Open AEDT UI when it is launched. diff --git a/examples/low_frequency/general/twin_builder/lti_rom_sml.py b/examples/low_frequency/general/twin_builder/lti_rom_sml.py index 9d1c12a7c..9d7ccd0d7 100644 --- a/examples/low_frequency/general/twin_builder/lti_rom_sml.py +++ b/examples/low_frequency/general/twin_builder/lti_rom_sml.py @@ -21,7 +21,7 @@ # Define constants -AEDT_VERSION = "2024.2" +AEDT_VERSION = "2025.1" NUM_CORES = 4 NG_MODE = False # Open AEDT UI when it is launched. diff --git a/examples/low_frequency/general/twin_builder/rc_circuit.py b/examples/low_frequency/general/twin_builder/rc_circuit.py index a369e0a1e..e64ad3024 100644 --- a/examples/low_frequency/general/twin_builder/rc_circuit.py +++ b/examples/low_frequency/general/twin_builder/rc_circuit.py @@ -17,7 +17,7 @@ # Define constants. -AEDT_VERSION = "2024.2" +AEDT_VERSION = "2025.1" NUM_CORES = 4 NG_MODE = False # Open AEDT UI when it is launched. diff --git a/examples/low_frequency/general/twin_builder/rectifier.py b/examples/low_frequency/general/twin_builder/rectifier.py index 508a1792e..cba971c88 100644 --- a/examples/low_frequency/general/twin_builder/rectifier.py +++ b/examples/low_frequency/general/twin_builder/rectifier.py @@ -20,7 +20,7 @@ # Define constants. -AEDT_VERSION = "2024.2" +AEDT_VERSION = "2025.1" NUM_CORES = 4 NG_MODE = False # Open AEDT UI when it is launched. diff --git a/examples/low_frequency/general/twin_builder/static_rom.py b/examples/low_frequency/general/twin_builder/static_rom.py index 4dec1fcec..314d803b0 100644 --- a/examples/low_frequency/general/twin_builder/static_rom.py +++ b/examples/low_frequency/general/twin_builder/static_rom.py @@ -20,7 +20,7 @@ # Define constants. -AEDT_VERSION = "2024.2" +AEDT_VERSION = "2025.1" NUM_CORES = 4 NG_MODE = False # Open AEDT UI when it is launched. diff --git a/examples/low_frequency/multiphysics/maxwell_icepak.py b/examples/low_frequency/multiphysics/maxwell_icepak.py index a629fb615..a131f5302 100644 --- a/examples/low_frequency/multiphysics/maxwell_icepak.py +++ b/examples/low_frequency/multiphysics/maxwell_icepak.py @@ -15,6 +15,7 @@ import os import tempfile import time + import ansys.aedt.core # Interface to Ansys Electronics Desktop from ansys.aedt.core.generic.constants import AXIS @@ -22,7 +23,7 @@ # # Constants help ensure consistency and avoid repetition throughout the example. -AEDT_VERSION = "2024.2" +AEDT_VERSION = "2025.1" NG_MODE = False # Open AEDT UI when it is launched. # ### Create temporary directory @@ -184,7 +185,10 @@ # ### Create the simulation setup # -# The simulation frequency is 150 kHz. You can query and modify the properties of the simulation setup using ``setup.props``. The "PercentError" establishes the minimum allowed change in energy due to the change in mesh size and ensure a small global solution error. +# The simulation frequency is 150 kHz. +# You can query and modify the properties of the simulation setup using ``setup.props``. +# The "PercentError" establishes the minimum allowed change in energy due to the change in mesh size +# and ensure a small global solution error. setup = m3d.create_setup(name="Setup1") setup.props["Frequency"] = "150kHz" @@ -220,8 +224,7 @@ em_loss = solution_loss.data_magnitude()[0] # - -# ### Analyitic calculation of DC resistance - +# ### Analytic calculation of DC resistance # + cu_cond = float(cu_litz.conductivity.value) diff --git a/examples/low_frequency/team_problem/bath_plate.py b/examples/low_frequency/team_problem/bath_plate.py index 1549b492d..25202e1e1 100644 --- a/examples/low_frequency/team_problem/bath_plate.py +++ b/examples/low_frequency/team_problem/bath_plate.py @@ -23,7 +23,7 @@ # ### Define constants # Constants help ensure consistency and avoid repetition throughout the example. -AEDT_VERSION = "2024.2" +AEDT_VERSION = "2025.1" NUM_CORES = 4 NG_MODE = False # Open AEDT UI when it is launched.