PyOpenMagnetics 1.5.0__tar.gz → 1.6.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/CMakeLists.txt +101 -15
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/PKG-INFO +24 -1
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/README.md +23 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/examples/complete_simulation_example.py +1 -2
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/examples/flyback_220v_12v_1a.py +1 -2
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/examples/flyback_220v_12v_2a_complete.py +1 -2
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/examples/flyback_design.py +1 -2
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/pyproject.toml +78 -78
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/src/advisers.cpp +69 -1
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/src/advisers.h +1 -0
- pyopenmagnetics-1.6.0/src/cmc.cpp +67 -0
- pyopenmagnetics-1.6.0/src/cmc.h +13 -0
- pyopenmagnetics-1.6.0/src/converter.cpp +569 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/src/core.cpp +98 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/src/core.h +1 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/src/losses.cpp +1 -24
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/src/losses.h +0 -1
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/src/module.cpp +4 -2
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/src/simulation.cpp +24 -42
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/src/simulation.h +1 -1
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/src/utils.cpp +3 -3
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/tests/test_core.py +84 -0
- pyopenmagnetics-1.5.0/src/converter.cpp +0 -4385
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/.github/workflows/ci.yml +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/.github/workflows/publish.yml +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/.gitignore +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/AGENTS.md +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/LICENSE +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/PyOpenMagnetics.pyi +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/__init__.py +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/api/MAS.py +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/api/mas_db_reader.py +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/api/validation.py +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/clear_cibuildwheel_cache.sh +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/docs/compatibility.md +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/docs/errors.md +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/docs/performance.md +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/examples/README.md +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/examples/buck_inductor.py +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/examples/converter_design_example.py +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/examples/debug_bobbin.py +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/examples/debug_coil.py +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/examples/debug_core.py +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/examples/debug_plotting.py +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/examples/flyback_bh_curve.png +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/examples/flyback_core.png +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/examples/flyback_summary.png +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/examples/flyback_waveforms.png +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/examples/list_plot_funcs.py +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/examples/plot_flyback_design.py +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/examples/plot_flyback_pyom.py +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/examples/test_field_calc.py +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/examples/test_field_plot.py +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/force_fresh_build.sh +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/llms.txt +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/notebooks/01_getting_started.ipynb +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/notebooks/02_buck_inductor.ipynb +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/notebooks/03_core_losses.ipynb +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/notebooks/README.md +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/requirements.txt +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/src/bobbin.cpp +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/src/bobbin.h +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/src/common.h +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/src/converter.h +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/src/database.cpp +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/src/database.h +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/src/logging.cpp +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/src/logging.h +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/src/plotting.cpp +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/src/plotting.h +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/src/settings.cpp +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/src/settings.h +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/src/utils.h +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/src/winding.cpp +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/src/winding.h +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/src/wire.cpp +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/src/wire.h +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/test.py +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/tests/__init__.py +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/tests/conftest.py +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/tests/test_converter_endpoints.py +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/tests/test_core_adviser.py +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/tests/test_examples_integration.py +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/tests/test_inputs.py +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/tests/test_logging.py +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/tests/test_magnetic_adviser.py +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/tests/test_plotting.py +0 -0
- {pyopenmagnetics-1.5.0 → pyopenmagnetics-1.6.0}/tests/test_winding.py +0 -0
|
@@ -42,6 +42,9 @@ else ()
|
|
|
42
42
|
endif()
|
|
43
43
|
|
|
44
44
|
SET(MAS_DIRECTORY "${CMAKE_BINARY_DIR}/MAS/")
|
|
45
|
+
# quicktype does not create the output directory; a FRESH build dir has no MAS/ yet
|
|
46
|
+
# (mirrors the CAS_DIRECTORY MAKE_DIRECTORY below).
|
|
47
|
+
file(MAKE_DIRECTORY "${MAS_DIRECTORY}")
|
|
45
48
|
if(DEFINED ENV{LOCAL_MKF_DIR})
|
|
46
49
|
SET(LOCAL_MKF_MAS TRUE)
|
|
47
50
|
SET(MAS_DIR "${PROJECT_SOURCE_DIR}/_mas_local")
|
|
@@ -124,8 +127,22 @@ include_directories("${CMAKE_BINARY_DIR}/_deps/eigen-src")
|
|
|
124
127
|
|
|
125
128
|
if(NOT LOCAL_MKF_MAS)
|
|
126
129
|
message(STATUS "Fetching MKF")
|
|
127
|
-
#
|
|
128
|
-
|
|
130
|
+
# --------------------------------------------------------------------
|
|
131
|
+
# MKF tracks main (ABT #73 resolved).
|
|
132
|
+
#
|
|
133
|
+
# MKF main deleted converter_models and links the Kirchhoff converter-model
|
|
134
|
+
# library (libKirchhoffApi.so) via KirchhoffBridge.cpp. The vendored build
|
|
135
|
+
# globs MKF's .cpp into the PyOpenMagnetics module, so it needs that .so at
|
|
136
|
+
# link time — which the Kirchhoff ExternalProject wired below (mirroring
|
|
137
|
+
# MKF's own MKF_USE_KIRCHHOFF) now provides. Kirchhoff and its AAS/PSMA
|
|
138
|
+
# siblings are published, so a clean checkout resolves the whole tree. The
|
|
139
|
+
# earlier 2ae859dc SHA pin (pre-converter_models-deletion) is no longer
|
|
140
|
+
# needed now that the Kirchhoff lib build is wired in — the prerequisite the
|
|
141
|
+
# old pin comment named. Tracks main so MKF fixes reach the wheel.
|
|
142
|
+
set(MKF_GIT_TAG "main"
|
|
143
|
+
CACHE STRING "MKF git ref for the vendored PyOM build")
|
|
144
|
+
# Force fresh clone by using a unique timestamp - update this when the pin changes
|
|
145
|
+
set(MKF_FORCE_REFRESH "2026-07-03-track-main-kirchhoff")
|
|
129
146
|
# Tell MKF to disable matplotplusplus and use SVG-based Painter instead
|
|
130
147
|
set(INCLUDE_PYMKF ON CACHE BOOL "Build Python interface" FORCE)
|
|
131
148
|
# GIT_SUBMODULES_RECURSE pulls in CAS/PEAS (added 2026-04 alongside the
|
|
@@ -140,7 +157,7 @@ if(NOT LOCAL_MKF_MAS)
|
|
|
140
157
|
# leave it out, otherwise FetchContent doubles the clone.
|
|
141
158
|
FetchContent_Declare(MKF
|
|
142
159
|
GIT_REPOSITORY https://github.com/OpenMagnetics/MKF.git
|
|
143
|
-
GIT_TAG
|
|
160
|
+
GIT_TAG ${MKF_GIT_TAG}
|
|
144
161
|
GIT_PROGRESS TRUE
|
|
145
162
|
GIT_SUBMODULES "CAS" "PEAS" "cci_coords"
|
|
146
163
|
GIT_SUBMODULES_RECURSE TRUE)
|
|
@@ -182,28 +199,40 @@ if(NOT LOCAL_MKF_MAS)
|
|
|
182
199
|
message(STATUS "MAS git error: ${MAS_GIT_ERROR}")
|
|
183
200
|
endif()
|
|
184
201
|
|
|
185
|
-
# Always delete and repopulate MKF
|
|
186
|
-
# mirroring the MAS refresh above. FetchContent will NOT re-
|
|
187
|
-
# already-cloned source dir
|
|
188
|
-
#
|
|
189
|
-
#
|
|
202
|
+
# Always delete and repopulate MKF so the checkout matches ${MKF_GIT_TAG}
|
|
203
|
+
# exactly, mirroring the MAS refresh above. FetchContent will NOT re-checkout
|
|
204
|
+
# an already-cloned source dir when the pin changes, so a persisted build dir
|
|
205
|
+
# (incremental CI cache, or a local build that previously tracked main) would
|
|
206
|
+
# otherwise keep a STALE MKF checkout at the wrong SHA — e.g. a main tip that
|
|
207
|
+
# needs the unpublished libKirchhoffApi.so and fails to link (ABT #73).
|
|
190
208
|
if(EXISTS ${CMAKE_BINARY_DIR}/_deps/mkf-src)
|
|
191
|
-
message(STATUS "Removing old MKF source to force fresh
|
|
209
|
+
message(STATUS "Removing old MKF source to force fresh checkout at ${MKF_GIT_TAG}")
|
|
192
210
|
file(REMOVE_RECURSE ${CMAKE_BINARY_DIR}/_deps/mkf-src)
|
|
193
211
|
endif()
|
|
194
212
|
message(STATUS "Populating MKF")
|
|
195
213
|
FetchContent_Populate(MKF)
|
|
196
|
-
# Show git log
|
|
214
|
+
# Show git log AND assert the checkout is exactly the pinned SHA. A silent
|
|
215
|
+
# drift here would resurface the libKirchhoffApi.so link failure ABT #73
|
|
216
|
+
# guards against, so fail LOUDLY at configure time instead.
|
|
197
217
|
execute_process(
|
|
198
|
-
COMMAND git -C ${mkf_SOURCE_DIR}
|
|
199
|
-
OUTPUT_VARIABLE
|
|
218
|
+
COMMAND git -C ${mkf_SOURCE_DIR} rev-parse HEAD
|
|
219
|
+
OUTPUT_VARIABLE MKF_GIT_HEAD
|
|
200
220
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
201
221
|
ERROR_VARIABLE MKF_GIT_ERROR
|
|
202
222
|
)
|
|
203
|
-
message(STATUS "MKF version: ${
|
|
223
|
+
message(STATUS "MKF version: ${MKF_GIT_HEAD}")
|
|
204
224
|
if(MKF_GIT_ERROR)
|
|
205
225
|
message(STATUS "MKF git error: ${MKF_GIT_ERROR}")
|
|
206
226
|
endif()
|
|
227
|
+
# Only assert when the pin is a full 40-char SHA (a branch/tag ref can't be
|
|
228
|
+
# compared to a resolved HEAD; that path is opt-in and the builder owns it).
|
|
229
|
+
string(LENGTH "${MKF_GIT_TAG}" _mkf_pin_len)
|
|
230
|
+
if(_mkf_pin_len EQUAL 40 AND NOT "${MKF_GIT_HEAD}" STREQUAL "${MKF_GIT_TAG}")
|
|
231
|
+
message(FATAL_ERROR
|
|
232
|
+
"Vendored PyOM built MKF at ${MKF_GIT_HEAD} but the pin is "
|
|
233
|
+
"${MKF_GIT_TAG} (ABT #73). Delete ${CMAKE_BINARY_DIR}/_deps/mkf-src "
|
|
234
|
+
"and reconfigure, or fetch the pinned commit.")
|
|
235
|
+
endif()
|
|
207
236
|
|
|
208
237
|
message(STATUS ${MAS_SOURCE_DIR})
|
|
209
238
|
else()
|
|
@@ -218,7 +247,22 @@ add_custom_command(
|
|
|
218
247
|
OUTPUT "${MAS_DIRECTORY}/MAS.hpp"
|
|
219
248
|
# Force regeneration by removing output first
|
|
220
249
|
COMMAND ${CMAKE_COMMAND} -E remove -f ${MAS_DIRECTORY}/MAS.hpp
|
|
221
|
-
COMMAND quicktype -l c++ -s schema ${MAS_DIR}/schemas/MAS.json
|
|
250
|
+
COMMAND quicktype -l c++ -s schema ${MAS_DIR}/schemas/MAS.json
|
|
251
|
+
# PEAS schemas: MAS main ($id https://psma.com/mas/...) now $refs shared
|
|
252
|
+
# PEAS primitives (https://psma.com/peas/...). quicktype resolves those
|
|
253
|
+
# external $refs by $id from sources passed with -S, so the PEAS schemas
|
|
254
|
+
# must be fed in here. PEAS is an MKF submodule at ${MKF_DIR}/PEAS.
|
|
255
|
+
-S ${MKF_DIR}/PEAS/schemas/utils.json
|
|
256
|
+
-S ${MKF_DIR}/PEAS/schemas/inputs/operatingPointExcitation.json
|
|
257
|
+
-S ${MKF_DIR}/PEAS/schemas/outputs/insulationCoordination.json
|
|
258
|
+
# outputBase.json must precede/accompany lossElementPerHarmonic.json: the
|
|
259
|
+
# latter's allOf[0] is {"$ref": "./outputBase.json"}. On Linux quicktype
|
|
260
|
+
# resolves that relative ref off the file path, but on Windows the file-URI
|
|
261
|
+
# resolution yields an empty URI ("Could not fetch schema") and the build
|
|
262
|
+
# fails. Feeding outputBase.json as a source lets quicktype resolve it by
|
|
263
|
+
# $id (https://psma.com/peas/outputs/outputBase.json) on every platform.
|
|
264
|
+
-S ${MKF_DIR}/PEAS/schemas/outputs/outputBase.json
|
|
265
|
+
-S ${MKF_DIR}/PEAS/schemas/outputs/lossElementPerHarmonic.json
|
|
222
266
|
-S ${MAS_DIR}/schemas/magnetic.json
|
|
223
267
|
-S ${MAS_DIR}/schemas/magnetic/core.json
|
|
224
268
|
-S ${MAS_DIR}/schemas/magnetic/coil.json
|
|
@@ -249,7 +293,8 @@ add_custom_command(
|
|
|
249
293
|
-S ${MAS_DIR}/schemas/inputs/designRequirements.json
|
|
250
294
|
-S ${MAS_DIR}/schemas/inputs/operatingConditions.json
|
|
251
295
|
-S ${MAS_DIR}/schemas/inputs/operatingPoint.json
|
|
252
|
-
|
|
296
|
+
# operatingPointExcitation moved from MAS to PEAS (MAS 76d5e9e "consolidate on PEAS");
|
|
297
|
+
# the PEAS copy is already fed above (${MKF_DIR}/PEAS/schemas/inputs/operatingPointExcitation.json).
|
|
253
298
|
-S ${MAS_DIR}/schemas/inputs/topologies/flyback.json
|
|
254
299
|
-S ${MAS_DIR}/schemas/inputs/topologies/currentTransformer.json
|
|
255
300
|
-S ${MAS_DIR}/schemas/inputs/topologies/boost.json
|
|
@@ -333,6 +378,8 @@ file(GLOB SOURCES src/*.cpp
|
|
|
333
378
|
${MKF_DIR}/src/support/*.cpp
|
|
334
379
|
)
|
|
335
380
|
|
|
381
|
+
# converter.cpp is now a thin shim over the Kirchhoff string API (libKirchhoffApi) — re-enabled.
|
|
382
|
+
|
|
336
383
|
set(CCI_GENERATED_CPP "${CMAKE_BINARY_DIR}/generated/CciCoordinatesData.cpp")
|
|
337
384
|
find_package(Python3 REQUIRED COMPONENTS Interpreter)
|
|
338
385
|
add_custom_command(
|
|
@@ -400,6 +447,45 @@ include_directories("${CMAKE_BINARY_DIR}/_cmrc/include")
|
|
|
400
447
|
include_directories("${MAS_DIRECTORY}")
|
|
401
448
|
include_directories("src/")
|
|
402
449
|
|
|
450
|
+
# Kirchhoff: the externalised converter-model library that replaced MKF's converter_models. converter.cpp
|
|
451
|
+
# and cmc.cpp are thin shims over its Kirchhoff::api string/JSON facade (libKirchhoffApi.so), and MKF's
|
|
452
|
+
# converter_models/KirchhoffBridge.cpp links it too. Built ISOLATED via ExternalProject so Kirchhoff's own
|
|
453
|
+
# `namespace MAS` types stay hidden inside the .so and never collide with MKF's identically-named ones —
|
|
454
|
+
# only JSON strings cross the boundary. Mirrors MKF/CMakeLists.txt's MKF_USE_KIRCHHOFF wiring.
|
|
455
|
+
# * Default: clone from GitHub at KIRCHHOFF_GIT_TAG (recursive submodules).
|
|
456
|
+
# * Local dev: -DKIRCHHOFF_SOURCE_DIR=/path/to/Kirchhoff to build a working tree instead.
|
|
457
|
+
include(ExternalProject)
|
|
458
|
+
set(KIRCHHOFF_GIT_TAG "main" CACHE STRING "Kirchhoff git tag/branch to build (when fetching from GitHub)")
|
|
459
|
+
set(KIRCHHOFF_SOURCE_DIR "" CACHE PATH "Local Kirchhoff working tree (leave empty to fetch from GitHub)")
|
|
460
|
+
set(KIRCHHOFF_BUILD_DIR "${CMAKE_BINARY_DIR}/kirchhoff-build")
|
|
461
|
+
set(KIRCHHOFF_API_LIB "${KIRCHHOFF_BUILD_DIR}/libKirchhoffApi.so")
|
|
462
|
+
if(KIRCHHOFF_SOURCE_DIR)
|
|
463
|
+
set(_kirchhoff_src SOURCE_DIR "${KIRCHHOFF_SOURCE_DIR}")
|
|
464
|
+
set(_kirchhoff_hdr_dir "${KIRCHHOFF_SOURCE_DIR}/src")
|
|
465
|
+
else()
|
|
466
|
+
set(_kirchhoff_src GIT_REPOSITORY "git@github.com:OpenConverters/Kirchhoff.git"
|
|
467
|
+
GIT_TAG "${KIRCHHOFF_GIT_TAG}")
|
|
468
|
+
set(_kirchhoff_hdr_dir "${CMAKE_BINARY_DIR}/kirchhoff-ext-prefix/src/kirchhoff_ext/src")
|
|
469
|
+
endif()
|
|
470
|
+
ExternalProject_Add(kirchhoff_ext
|
|
471
|
+
${_kirchhoff_src}
|
|
472
|
+
PREFIX "${CMAKE_BINARY_DIR}/kirchhoff-ext-prefix"
|
|
473
|
+
BINARY_DIR "${KIRCHHOFF_BUILD_DIR}"
|
|
474
|
+
CMAKE_ARGS
|
|
475
|
+
-DCMAKE_BUILD_TYPE=Release
|
|
476
|
+
-DKIRCHHOFF_BUILD_SHARED_API=ON # emit libKirchhoffApi.so (string facade, hidden internals)
|
|
477
|
+
-DKIRCHHOFF_BUILD_PYBIND=OFF
|
|
478
|
+
-DENABLE_NGSPICE=ON # KH carries the simulator MKF stopped building
|
|
479
|
+
BUILD_ALWAYS OFF
|
|
480
|
+
INSTALL_COMMAND ""
|
|
481
|
+
BUILD_BYPRODUCTS "${KIRCHHOFF_API_LIB}")
|
|
482
|
+
include_directories("${_kirchhoff_hdr_dir}")
|
|
483
|
+
add_library(KirchhoffApi SHARED IMPORTED)
|
|
484
|
+
set_target_properties(KirchhoffApi PROPERTIES IMPORTED_LOCATION "${KIRCHHOFF_API_LIB}")
|
|
485
|
+
add_dependencies(KirchhoffApi kirchhoff_ext)
|
|
486
|
+
target_link_libraries(PyOpenMagnetics PRIVATE KirchhoffApi)
|
|
487
|
+
add_dependencies(PyOpenMagnetics kirchhoff_ext)
|
|
488
|
+
|
|
403
489
|
# target_link_libraries(PyOpenMagnetics PUBLIC MKF)
|
|
404
490
|
|
|
405
491
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: PyOpenMagnetics
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.6.0
|
|
4
4
|
Summary: Python wrapper for OpenMagnetics
|
|
5
5
|
Author-Email: Alfonso Martinez <Alfonso_VII@hotmail.com>
|
|
6
6
|
Classifier: Development Status :: 4 - Beta
|
|
@@ -57,6 +57,29 @@ cd PyOpenMagnetics
|
|
|
57
57
|
pip install .
|
|
58
58
|
```
|
|
59
59
|
|
|
60
|
+
#### MKF is pinned to a SHA (build reproducibility — ABT #73)
|
|
61
|
+
|
|
62
|
+
This build compiles MKF by **globbing its `.cpp` files directly** into the
|
|
63
|
+
extension (it does not drive MKF's own CMake). MKF `main` has since moved to
|
|
64
|
+
"delete `converter_models` + link the Kirchhoff converter-model library
|
|
65
|
+
(`libKirchhoffApi.so`)"; because Kirchhoff and its AAS sibling are **not yet
|
|
66
|
+
published**, a from-scratch build of newer `main` cannot obtain that library
|
|
67
|
+
and **fails to link**.
|
|
68
|
+
|
|
69
|
+
`CMakeLists.txt` therefore pins the MKF FetchContent to the last self-contained
|
|
70
|
+
commit — `MKF_GIT_TAG=2ae859dcae6c3b2e5a128893247b7714360e863f`, the exact SHA
|
|
71
|
+
the shipping `.so` was built from — and a configure-time guard fails loudly if
|
|
72
|
+
the checkout drifts. A clean rebuild is reproducible as-is:
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
rm -rf build && pip install . --no-deps -v # or: cmake -S . -B build && ninja -C build
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
To **advance** the pin you must first wire the Kirchhoff library build into
|
|
79
|
+
`CMakeLists.txt` (publish AAS/Kirchhoff, then `add_subdirectory` +
|
|
80
|
+
`target_link_libraries(... libKirchhoffApi.so)`). Overriding
|
|
81
|
+
`-DMKF_GIT_TAG=main` before that lands will break the link.
|
|
82
|
+
|
|
60
83
|
### ⚠️ Import Instructions
|
|
61
84
|
|
|
62
85
|
**Important:** The compiled extension module may require special import handling:
|
|
@@ -40,6 +40,29 @@ cd PyOpenMagnetics
|
|
|
40
40
|
pip install .
|
|
41
41
|
```
|
|
42
42
|
|
|
43
|
+
#### MKF is pinned to a SHA (build reproducibility — ABT #73)
|
|
44
|
+
|
|
45
|
+
This build compiles MKF by **globbing its `.cpp` files directly** into the
|
|
46
|
+
extension (it does not drive MKF's own CMake). MKF `main` has since moved to
|
|
47
|
+
"delete `converter_models` + link the Kirchhoff converter-model library
|
|
48
|
+
(`libKirchhoffApi.so`)"; because Kirchhoff and its AAS sibling are **not yet
|
|
49
|
+
published**, a from-scratch build of newer `main` cannot obtain that library
|
|
50
|
+
and **fails to link**.
|
|
51
|
+
|
|
52
|
+
`CMakeLists.txt` therefore pins the MKF FetchContent to the last self-contained
|
|
53
|
+
commit — `MKF_GIT_TAG=2ae859dcae6c3b2e5a128893247b7714360e863f`, the exact SHA
|
|
54
|
+
the shipping `.so` was built from — and a configure-time guard fails loudly if
|
|
55
|
+
the checkout drifts. A clean rebuild is reproducible as-is:
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
rm -rf build && pip install . --no-deps -v # or: cmake -S . -B build && ninja -C build
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
To **advance** the pin you must first wire the Kirchhoff library build into
|
|
62
|
+
`CMakeLists.txt` (publish AAS/Kirchhoff, then `add_subdirectory` +
|
|
63
|
+
`target_link_libraries(... libKirchhoffApi.so)`). Overriding
|
|
64
|
+
`-DMKF_GIT_TAG=main` before that lands will break the link.
|
|
65
|
+
|
|
43
66
|
### ⚠️ Import Instructions
|
|
44
67
|
|
|
45
68
|
**Important:** The compiled extension module may require special import handling:
|
|
@@ -1,78 +1,78 @@
|
|
|
1
|
-
[build-system]
|
|
2
|
-
requires = ["scikit-build-core", "pybind11"]
|
|
3
|
-
build-backend = "scikit_build_core.build"
|
|
4
|
-
|
|
5
|
-
[project]
|
|
6
|
-
name = "PyOpenMagnetics"
|
|
7
|
-
version = "1.
|
|
8
|
-
requires-python = ">=3.8"
|
|
9
|
-
authors = [
|
|
10
|
-
{ name="Alfonso Martinez", email="Alfonso_VII@hotmail.com" },
|
|
11
|
-
]
|
|
12
|
-
description = "Python wrapper for OpenMagnetics"
|
|
13
|
-
readme = "README.md"
|
|
14
|
-
classifiers = [
|
|
15
|
-
"Development Status :: 4 - Beta",
|
|
16
|
-
"Programming Language :: Python :: 3",
|
|
17
|
-
"Operating System :: Microsoft :: Windows :: Windows 11",
|
|
18
|
-
"Operating System :: POSIX :: Linux",
|
|
19
|
-
"Programming Language :: C++",
|
|
20
|
-
"License :: OSI Approved :: MIT License",
|
|
21
|
-
]
|
|
22
|
-
|
|
23
|
-
[project.urls]
|
|
24
|
-
Homepage = "https://openmagnetics.com"
|
|
25
|
-
Repository = "https://github.com/OpenMagnetics/PyOpenMagnetics"
|
|
26
|
-
Contact = "https://www.linkedin.com/in/alfonso-martinez-de-la-torre/"
|
|
27
|
-
|
|
28
|
-
[tool.scikit-build]
|
|
29
|
-
build-dir = "build/{wheel_tag}"
|
|
30
|
-
cmake.verbose = true
|
|
31
|
-
sdist.exclude = [".venv*", ".venv*/**", "build", "build/**", "dist", "dist/**", "*.egg-info", "__pycache__", "*.pyc"]
|
|
32
|
-
# Include additional files in the wheel
|
|
33
|
-
wheel.packages = ["."]
|
|
34
|
-
wheel.install-dir = "PyOpenMagnetics"
|
|
35
|
-
# Ensure AGENTS.md and llms.txt are included in sdist and wheel
|
|
36
|
-
sdist.include = ["__init__.py", "AGENTS.md", "llms.txt", "PyOpenMagnetics.pyi"]
|
|
37
|
-
|
|
38
|
-
[[tool.scikit-build.overrides]]
|
|
39
|
-
if.platform-system = "^linux"
|
|
40
|
-
# build.tool-args = ["-j8"]
|
|
41
|
-
[[tool.scikit-build.overrides]]
|
|
42
|
-
if.platform-system = "^win32"
|
|
43
|
-
# build.tool-args = ["-maxcpucount:8"]
|
|
44
|
-
|
|
45
|
-
[tool.cibuildwheel]
|
|
46
|
-
skip=["pp*", "*-win32", "*mul*"]
|
|
47
|
-
manylinux-x86_64-image = "manylinux_2_28"
|
|
48
|
-
manylinux-aarch64-image = "manylinux_2_28"
|
|
49
|
-
manylinux-ppc64le-image = "manylinux_2_28"
|
|
50
|
-
manylinux-s390x-image = "manylinux_2_28"
|
|
51
|
-
manylinux-pypy_x86_64-image = "manylinux_2_28"
|
|
52
|
-
manylinux-pypy_aarch64-image = "manylinux_2_28"
|
|
53
|
-
environment = { GIT_LFS_SKIP_SMUDGE=1 }
|
|
54
|
-
build-verbosity = 1
|
|
55
|
-
|
|
56
|
-
[tool.cibuildwheel.linux]
|
|
57
|
-
before-all = [
|
|
58
|
-
"rm -rf /project/build /root/.cmake",
|
|
59
|
-
"dnf -y module reset nodejs",
|
|
60
|
-
"dnf -y module enable nodejs:20",
|
|
61
|
-
"dnf -y install nodejs npm",
|
|
62
|
-
"npm --version",
|
|
63
|
-
"npm install -g quicktype@23.0.170"
|
|
64
|
-
]
|
|
65
|
-
# Parallel level 2 (not 3): two large pybind11 TUs compiling at once stays
|
|
66
|
-
# within the runner's RAM. Combined with dropping -g (see CMakeLists.txt),
|
|
67
|
-
# this avoids the OOM that recycled the runner mid-compile (exit 143).
|
|
68
|
-
environment = { GIT_LFS_SKIP_SMUDGE=1, CMAKE_BUILD_PARALLEL_LEVEL="2" }
|
|
69
|
-
|
|
70
|
-
[tool.cibuildwheel.macos]
|
|
71
|
-
before-all = "npm --version && npm install -g quicktype@23.0.170"
|
|
72
|
-
environment = { MACOSX_DEPLOYMENT_TARGET="14.0", GIT_LFS_SKIP_SMUDGE=1, CMAKE_BUILD_PARALLEL_LEVEL="3" }
|
|
73
|
-
|
|
74
|
-
[tool.cibuildwheel.windows]
|
|
75
|
-
before-all = "rmdir /S /Q build && npm --version && npm install -g quicktype@23.0.170"
|
|
76
|
-
archs = ["AMD64"]
|
|
77
|
-
|
|
78
|
-
environment = { GIT_LFS_SKIP_SMUDGE=1, CMAKE_BUILD_PARALLEL_LEVEL="2" }
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["scikit-build-core", "pybind11"]
|
|
3
|
+
build-backend = "scikit_build_core.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "PyOpenMagnetics"
|
|
7
|
+
version = "1.6.0"
|
|
8
|
+
requires-python = ">=3.8"
|
|
9
|
+
authors = [
|
|
10
|
+
{ name="Alfonso Martinez", email="Alfonso_VII@hotmail.com" },
|
|
11
|
+
]
|
|
12
|
+
description = "Python wrapper for OpenMagnetics"
|
|
13
|
+
readme = "README.md"
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 4 - Beta",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"Operating System :: Microsoft :: Windows :: Windows 11",
|
|
18
|
+
"Operating System :: POSIX :: Linux",
|
|
19
|
+
"Programming Language :: C++",
|
|
20
|
+
"License :: OSI Approved :: MIT License",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[project.urls]
|
|
24
|
+
Homepage = "https://openmagnetics.com"
|
|
25
|
+
Repository = "https://github.com/OpenMagnetics/PyOpenMagnetics"
|
|
26
|
+
Contact = "https://www.linkedin.com/in/alfonso-martinez-de-la-torre/"
|
|
27
|
+
|
|
28
|
+
[tool.scikit-build]
|
|
29
|
+
build-dir = "build/{wheel_tag}"
|
|
30
|
+
cmake.verbose = true
|
|
31
|
+
sdist.exclude = [".venv*", ".venv*/**", "build", "build/**", "dist", "dist/**", "*.egg-info", "__pycache__", "*.pyc"]
|
|
32
|
+
# Include additional files in the wheel
|
|
33
|
+
wheel.packages = ["."]
|
|
34
|
+
wheel.install-dir = "PyOpenMagnetics"
|
|
35
|
+
# Ensure AGENTS.md and llms.txt are included in sdist and wheel
|
|
36
|
+
sdist.include = ["__init__.py", "AGENTS.md", "llms.txt", "PyOpenMagnetics.pyi"]
|
|
37
|
+
|
|
38
|
+
[[tool.scikit-build.overrides]]
|
|
39
|
+
if.platform-system = "^linux"
|
|
40
|
+
# build.tool-args = ["-j8"]
|
|
41
|
+
[[tool.scikit-build.overrides]]
|
|
42
|
+
if.platform-system = "^win32"
|
|
43
|
+
# build.tool-args = ["-maxcpucount:8"]
|
|
44
|
+
|
|
45
|
+
[tool.cibuildwheel]
|
|
46
|
+
skip=["pp*", "*-win32", "*mul*"]
|
|
47
|
+
manylinux-x86_64-image = "manylinux_2_28"
|
|
48
|
+
manylinux-aarch64-image = "manylinux_2_28"
|
|
49
|
+
manylinux-ppc64le-image = "manylinux_2_28"
|
|
50
|
+
manylinux-s390x-image = "manylinux_2_28"
|
|
51
|
+
manylinux-pypy_x86_64-image = "manylinux_2_28"
|
|
52
|
+
manylinux-pypy_aarch64-image = "manylinux_2_28"
|
|
53
|
+
environment = { GIT_LFS_SKIP_SMUDGE=1 }
|
|
54
|
+
build-verbosity = 1
|
|
55
|
+
|
|
56
|
+
[tool.cibuildwheel.linux]
|
|
57
|
+
before-all = [
|
|
58
|
+
"rm -rf /project/build /root/.cmake",
|
|
59
|
+
"dnf -y module reset nodejs",
|
|
60
|
+
"dnf -y module enable nodejs:20",
|
|
61
|
+
"dnf -y install nodejs npm",
|
|
62
|
+
"npm --version",
|
|
63
|
+
"npm install -g quicktype@23.0.170"
|
|
64
|
+
]
|
|
65
|
+
# Parallel level 2 (not 3): two large pybind11 TUs compiling at once stays
|
|
66
|
+
# within the runner's RAM. Combined with dropping -g (see CMakeLists.txt),
|
|
67
|
+
# this avoids the OOM that recycled the runner mid-compile (exit 143).
|
|
68
|
+
environment = { GIT_LFS_SKIP_SMUDGE=1, CMAKE_BUILD_PARALLEL_LEVEL="2" }
|
|
69
|
+
|
|
70
|
+
[tool.cibuildwheel.macos]
|
|
71
|
+
before-all = "npm --version && npm install -g quicktype@23.0.170"
|
|
72
|
+
environment = { MACOSX_DEPLOYMENT_TARGET="14.0", GIT_LFS_SKIP_SMUDGE=1, CMAKE_BUILD_PARALLEL_LEVEL="3" }
|
|
73
|
+
|
|
74
|
+
[tool.cibuildwheel.windows]
|
|
75
|
+
before-all = "rmdir /S /Q build && npm --version && npm install -g quicktype@23.0.170"
|
|
76
|
+
archs = ["AMD64"]
|
|
77
|
+
|
|
78
|
+
environment = { GIT_LFS_SKIP_SMUDGE=1, CMAKE_BUILD_PARALLEL_LEVEL="2" }
|
|
@@ -104,6 +104,61 @@ json calculate_advised_magnetics(json inputsJson, int maximumNumberResults, json
|
|
|
104
104
|
}
|
|
105
105
|
}
|
|
106
106
|
|
|
107
|
+
json calculate_advised_magnetics_with_filters(json inputsJson, json filterFlowJson, int maximumNumberResults, json coreModeJson) {
|
|
108
|
+
// FAST custom design driven by a CALLER-SUPPLIED filter flow: strictlyRequired
|
|
109
|
+
// filters (e.g. DC/EFFECTIVE_CURRENT_DENSITY, which the default custom flow
|
|
110
|
+
// omits) DROP any wound candidate that fails them, so designed windings are
|
|
111
|
+
// current-density gated while the fast path's loss ranking + core search are
|
|
112
|
+
// preserved. Exposes MagneticAdviser::get_advised_magnetic_fast(inputs, flow, n).
|
|
113
|
+
try {
|
|
114
|
+
OpenMagnetics::Inputs inputs(inputsJson);
|
|
115
|
+
OpenMagnetics::CoreAdviser::CoreAdviserModes coreMode;
|
|
116
|
+
from_json(coreModeJson, coreMode);
|
|
117
|
+
|
|
118
|
+
std::vector<OpenMagnetics::MagneticFilterOperation> filterFlow;
|
|
119
|
+
for (auto filterJson : filterFlowJson) {
|
|
120
|
+
OpenMagnetics::MagneticFilterOperation filter(filterJson);
|
|
121
|
+
filterFlow.push_back(filter);
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
OpenMagnetics::MagneticAdviser magneticAdviser;
|
|
125
|
+
magneticAdviser.set_core_mode(coreMode);
|
|
126
|
+
auto masMagnetics = magneticAdviser.get_advised_magnetic_fast(inputs, filterFlow, maximumNumberResults);
|
|
127
|
+
|
|
128
|
+
auto scoringsPerFilter = magneticAdviser.get_scorings();
|
|
129
|
+
|
|
130
|
+
json results = json();
|
|
131
|
+
results["data"] = json::array();
|
|
132
|
+
for (auto& [masMagnetic, scoring] : masMagnetics) {
|
|
133
|
+
std::string name = masMagnetic.get_magnetic().get_manufacturer_info().value().get_reference().value();
|
|
134
|
+
json result;
|
|
135
|
+
json masJson;
|
|
136
|
+
to_json(masJson, masMagnetic);
|
|
137
|
+
result["mas"] = masJson;
|
|
138
|
+
result["scoring"] = scoring;
|
|
139
|
+
if (scoringsPerFilter.count(name)) {
|
|
140
|
+
json filterScorings;
|
|
141
|
+
for (auto& [filter, filterScore] : scoringsPerFilter[name]) {
|
|
142
|
+
filterScorings[std::string(magic_enum::enum_name(filter))] = filterScore;
|
|
143
|
+
}
|
|
144
|
+
result["scoringPerFilter"] = filterScorings;
|
|
145
|
+
}
|
|
146
|
+
results["data"].push_back(result);
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
sort(results["data"].begin(), results["data"].end(), [](json& b1, json& b2) {
|
|
150
|
+
return b1["scoring"] > b2["scoring"];
|
|
151
|
+
});
|
|
152
|
+
|
|
153
|
+
return results;
|
|
154
|
+
}
|
|
155
|
+
catch (const std::exception &exc) {
|
|
156
|
+
json exception;
|
|
157
|
+
exception["data"] = "Exception: " + std::string{exc.what()};
|
|
158
|
+
return exception;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
|
|
107
162
|
json calculate_advised_magnetics_fast(json inputsJson, int maximumNumberResults, json coreModeJson) {
|
|
108
163
|
try {
|
|
109
164
|
OpenMagnetics::Inputs inputs(inputsJson);
|
|
@@ -391,7 +446,20 @@ void register_adviser_bindings(py::module& m) {
|
|
|
391
446
|
... print(f"Score: {item['scoring']}, Per filter: {item['scoringPerFilter']}")
|
|
392
447
|
)pbdoc",
|
|
393
448
|
py::arg("inputs_json"), py::arg("max_results"), py::arg("core_mode_json"));
|
|
394
|
-
|
|
449
|
+
|
|
450
|
+
m.def("calculate_advised_magnetics_with_filters", &calculate_advised_magnetics_with_filters,
|
|
451
|
+
R"pbdoc(
|
|
452
|
+
Fast custom magnetic design with a CALLER-SUPPLIED filter flow.
|
|
453
|
+
|
|
454
|
+
Like calculate_advised_magnetics_fast(), but strictlyRequired filters in
|
|
455
|
+
filter_flow_json DROP any wound candidate that fails them — e.g. add
|
|
456
|
+
DC_CURRENT_DENSITY / EFFECTIVE_CURRENT_DENSITY so designed windings are
|
|
457
|
+
current-density gated. Each filter op is
|
|
458
|
+
{"filter": <TitleCaseName>, "invert": bool, "log": bool,
|
|
459
|
+
"strictlyRequired": bool, "weight": float}.
|
|
460
|
+
)pbdoc",
|
|
461
|
+
py::arg("inputs_json"), py::arg("filter_flow_json"), py::arg("max_results"), py::arg("core_mode_json"));
|
|
462
|
+
|
|
395
463
|
m.def("calculate_advised_magnetics_fast", &calculate_advised_magnetics_fast,
|
|
396
464
|
R"pbdoc(
|
|
397
465
|
Get recommended complete magnetic designs using fast analytical mode.
|
|
@@ -9,6 +9,7 @@ json calculate_advised_cores(json inputsJson, json weightsJson, int maximumNumbe
|
|
|
9
9
|
|
|
10
10
|
// Magnetic adviser
|
|
11
11
|
json calculate_advised_magnetics(json inputsJson, int maximumNumberResults, json coreModeJson);
|
|
12
|
+
json calculate_advised_magnetics_with_filters(json inputsJson, json filterFlowJson, int maximumNumberResults, json coreModeJson);
|
|
12
13
|
json calculate_advised_magnetics_fast(json inputsJson, int maximumNumberResults, json coreModeJson);
|
|
13
14
|
json calculate_advised_magnetics_from_catalog(json inputsJson, json catalogJson, int maximumNumberResults);
|
|
14
15
|
json calculate_advised_magnetics_from_cache(json inputsJson, json filterFlowJson, int maximumNumberResults);
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
#include "cmc.h"
|
|
2
|
+
|
|
3
|
+
// The CMC design moved to Kirchhoff with the rest of the converter models (MKF 3e0261fd deleted
|
|
4
|
+
// converter_models). This TU is a THIN shim over Kirchhoff::api::design_cmc — the string-in/JSON-out
|
|
5
|
+
// facade of libKirchhoffApi.so — that re-shapes its {"inputs", "cmcDiagnostics"} result into the
|
|
6
|
+
// legacy calculate_cmc_inputs contract El Choker and the WASM wizard consume: the MAS Inputs spread
|
|
7
|
+
// at the ROOT plus a "cmcDiagnostics" sibling, or {"error": "..."} on failure (never a throw).
|
|
8
|
+
// Only KirchhoffApi.hpp is included, so no Kirchhoff MAS type ever enters an MKF translation unit.
|
|
9
|
+
|
|
10
|
+
#include "pybind11_json/pybind11_json.hpp"
|
|
11
|
+
#include "json.hpp"
|
|
12
|
+
#include <KirchhoffApi.hpp>
|
|
13
|
+
|
|
14
|
+
#include <string>
|
|
15
|
+
|
|
16
|
+
namespace py = pybind11;
|
|
17
|
+
using json = nlohmann::json;
|
|
18
|
+
|
|
19
|
+
namespace PyMKF {
|
|
20
|
+
|
|
21
|
+
namespace {
|
|
22
|
+
|
|
23
|
+
json cmc_inputs_via_kirchhoff(const json& cmcInputsJson, const char* functionName) {
|
|
24
|
+
const std::string out = Kirchhoff::api::design_cmc(cmcInputsJson.dump());
|
|
25
|
+
constexpr const char* kExceptionPrefix = "Exception: ";
|
|
26
|
+
if (out.rfind(kExceptionPrefix, 0) == 0) {
|
|
27
|
+
return json{{"error", std::string(functionName) + ": " +
|
|
28
|
+
out.substr(std::string(kExceptionPrefix).size())}};
|
|
29
|
+
}
|
|
30
|
+
json parsed = json::parse(out);
|
|
31
|
+
// Legacy contract: the MAS Inputs at the root + the diagnostics as a sibling key.
|
|
32
|
+
json result = std::move(parsed.at("inputs"));
|
|
33
|
+
result["cmcDiagnostics"] = std::move(parsed.at("cmcDiagnostics"));
|
|
34
|
+
return result;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
json calculate_cmc_inputs(json cmcInputsJson) {
|
|
38
|
+
return cmc_inputs_via_kirchhoff(cmcInputsJson, "calculate_cmc_inputs");
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
json calculate_advanced_cmc_inputs(json cmcInputsJson) {
|
|
42
|
+
// The advanced entry REQUIRES the pinned inductance (the legacy AdvancedCommonModeChoke ctor
|
|
43
|
+
// did j.at("desiredInductance")); Kirchhoff treats its presence as the mode switch.
|
|
44
|
+
if (!cmcInputsJson.contains("desiredInductance")) {
|
|
45
|
+
return json{{"error", "calculate_advanced_cmc_inputs: 'desiredInductance' is required"}};
|
|
46
|
+
}
|
|
47
|
+
return cmc_inputs_via_kirchhoff(cmcInputsJson, "calculate_advanced_cmc_inputs");
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
} // namespace
|
|
51
|
+
|
|
52
|
+
void register_cmc_bindings(py::module& m) {
|
|
53
|
+
m.def("calculate_cmc_inputs", &calculate_cmc_inputs,
|
|
54
|
+
"Build MAS Inputs (designRequirements + operatingPoints) for a CMC from "
|
|
55
|
+
"wizard params (operatingVoltage, operatingCurrent, lineFrequency, "
|
|
56
|
+
"numberOfWindings, and an impedance/insertion-loss/noise spec). Mirrors "
|
|
57
|
+
"the WASM `calculate_cmc_inputs` used by el-choker's CMC wizard. "
|
|
58
|
+
"Delegates to Kirchhoff api::design_cmc.",
|
|
59
|
+
py::arg("cmc_inputs"));
|
|
60
|
+
m.def("calculate_advanced_cmc_inputs", &calculate_advanced_cmc_inputs,
|
|
61
|
+
"Advanced-mode CMC inputs builder (user supplies `desiredInductance` + "
|
|
62
|
+
"`designFrequency` directly rather than a spec). Delegates to Kirchhoff "
|
|
63
|
+
"api::design_cmc.",
|
|
64
|
+
py::arg("cmc_inputs"));
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
} // namespace PyMKF
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
#pragma once
|
|
2
|
+
|
|
3
|
+
#include <pybind11/pybind11.h>
|
|
4
|
+
|
|
5
|
+
namespace PyMKF {
|
|
6
|
+
|
|
7
|
+
// Common-mode-choke bindings (calculate_cmc_inputs / calculate_advanced_cmc_inputs), re-pointed at
|
|
8
|
+
// the Kirchhoff string API after the converter_models externalisation removed MKF's own
|
|
9
|
+
// CommonModeChoke. Split out of converter.cpp (still excluded from the build) so El Choker's CMC
|
|
10
|
+
// path works without re-enabling the whole legacy converter surface.
|
|
11
|
+
void register_cmc_bindings(pybind11::module& m);
|
|
12
|
+
|
|
13
|
+
} // namespace PyMKF
|