-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #109 from upb-lea/split_improvement
Split improvement
- Loading branch information
Showing
9 changed files
with
234 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
"""Example how to use the split winding method. Run this file, to see the different winding orders.""" | ||
import femmt as fmt | ||
import os | ||
|
||
def run_transformer_vvw_split_examples(num_windings, onelab_folder: str = None, show_visual_outputs: bool = True, is_test: bool = False): | ||
"""Run the example code for the transformer.""" | ||
example_results_folder = os.path.join(os.path.dirname(__file__), "example_results") | ||
if not os.path.exists(example_results_folder): | ||
os.mkdir(example_results_folder) | ||
|
||
def setup_simulation(working_directory, horizontal_split_factors, vertical_split_factors): | ||
geo = fmt.MagneticComponent(component_type=fmt.ComponentType.Transformer, working_directory=working_directory, | ||
verbosity=fmt.Verbosity.Silent, is_gui=is_test) | ||
|
||
# This line is for automated pytest running on GitHub only. Please ignore this line! | ||
if onelab_folder is not None: | ||
geo.file_data.onelab_folder_path = onelab_folder | ||
|
||
core_dimensions = fmt.dtos.SingleCoreDimensions(window_h=16.1e-3, window_w=(22.5 - 12) / 2 * 1e-3, | ||
core_inner_diameter=12e-3, core_h=22e-3) | ||
core = fmt.Core(core_dimensions=core_dimensions, material=fmt.Material.N95, temperature=60, frequency=100000, | ||
permeability_datasource=fmt.MaterialDataSource.Measurement, | ||
permeability_datatype=fmt.MeasurementDataType.ComplexPermeability, | ||
permeability_measurement_setup=fmt.MeasurementSetup.LEA_LK, | ||
permittivity_datasource=fmt.MaterialDataSource.Measurement, | ||
permittivity_datatype=fmt.MeasurementDataType.ComplexPermittivity, | ||
permittivity_measurement_setup=fmt.MeasurementSetup.LEA_LK) | ||
geo.set_core(core) | ||
|
||
air_gaps = fmt.AirGaps(fmt.AirGapMethod.Percent, core) | ||
air_gaps.add_air_gap(fmt.AirGapLegPosition.CenterLeg, 0.00016, 50) | ||
geo.set_air_gaps(air_gaps) | ||
|
||
insulation = fmt.Insulation() | ||
insulation.add_core_insulations(0.0008, 0.0008, 0.0001, 0.00001) | ||
iso_self = 0.0001 | ||
iso_against = 0.0002 | ||
insulation.add_winding_insulations( | ||
[[iso_self, iso_against, iso_against, iso_against, iso_against, iso_against, iso_against], | ||
[iso_against, iso_self, iso_against, iso_against, iso_against, iso_against, iso_against], | ||
[iso_against, iso_against, iso_self, iso_against, iso_against, iso_against, iso_against], | ||
[iso_against, iso_against, iso_against, iso_self, iso_against, iso_against, iso_against], | ||
[iso_against, iso_against, iso_against, iso_against, iso_self, iso_against, iso_against], | ||
[iso_against, iso_against, iso_against, iso_against, iso_against, iso_self, iso_against], | ||
[iso_against, iso_against, iso_against, iso_against, iso_against, iso_against, iso_self]]) | ||
geo.set_insulation(insulation) | ||
|
||
winding_window = fmt.WindingWindow(core, insulation) | ||
|
||
cells = winding_window.flexible_split( | ||
horizontal_split_factors=horizontal_split_factors, | ||
vertical_split_factors=vertical_split_factors | ||
) | ||
|
||
windings = [] | ||
for i in range(num_windings): | ||
winding = fmt.Conductor(i, fmt.Conductivity.Copper) | ||
winding.set_litz_round_conductor(0.85e-3 / 2, 40, 0.1e-3 / 2, None, fmt.ConductorArrangement.Square) | ||
windings.append(winding) | ||
|
||
for i in range(num_windings): | ||
cells[i].set_winding(windings[i], 7 - i, fmt.WindingType.Single, fmt.Align.ToEdges, | ||
fmt.ConductorDistribution.VerticalUpward_HorizontalRightward) | ||
|
||
geo.set_winding_windows([winding_window]) | ||
|
||
geo.create_model(freq=100000, pre_visualize_geometry=show_visual_outputs) | ||
|
||
return geo | ||
|
||
if num_windings == 2: | ||
# Run with vertical split | ||
working_directory = os.path.join(example_results_folder, "2-windings-vertical-split-only") | ||
setup_simulation(working_directory, horizontal_split_factors=[], vertical_split_factors=[[0.5]]) | ||
|
||
# Run with horizontal split | ||
working_directory = os.path.join(example_results_folder, "2-windings-horizontal-split-only") | ||
setup_simulation(working_directory, horizontal_split_factors=[0.5], vertical_split_factors=[]) | ||
|
||
elif num_windings == 3: | ||
working_directory = os.path.join(example_results_folder, "3-windings-vertical-split-only") | ||
setup_simulation(working_directory, horizontal_split_factors=[], vertical_split_factors=[[0.33, 0.66]]) | ||
|
||
working_directory = os.path.join(example_results_folder, "3-windings-horizontal-split-only") | ||
setup_simulation(working_directory, horizontal_split_factors=[0.33, 0.66], vertical_split_factors=[]) | ||
|
||
elif num_windings == 5: | ||
working_directory = os.path.join(example_results_folder, "5-windings") | ||
setup_simulation(working_directory, horizontal_split_factors=[0.48, 0.75], vertical_split_factors=[[0.5], [0.5], None]) | ||
|
||
elif num_windings == 6: | ||
working_directory = os.path.join(example_results_folder, "6-windings") | ||
setup_simulation(working_directory, horizontal_split_factors=[0.48, 0.75], vertical_split_factors=[[0.5], [0.5], [0.5]]) | ||
|
||
else: | ||
raise ValueError("Unsupported number of windings") | ||
|
||
|
||
if __name__ == "__main__": | ||
# Run simulations for different numbers of windings | ||
for num_windings in [2, 3, 5, 6]: | ||
print(f"Running simulation for {num_windings} windings") | ||
run_transformer_vvw_split_examples(num_windings, show_visual_outputs=True) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters