.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "gen/examples/design_geometry_from_specifications.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note Click :ref:`here ` to download the full example code .. rst-class:: sphx-glr-example-title .. _sphx_glr_gen_examples_design_geometry_from_specifications.py: Usage example of loading a specification model and creating a parametrized geometry from it. ============================================================================================== .. GENERATED FROM PYTHON SOURCE LINES 5-29 .. code-block:: default import pprint import mmbse_client as mmbse # Specify variables system_id = 41 specification_model = "Specification" model_name = "2D iron yoke" # Load the Geometry model mmbse = mmbse.MMBSE(api_token="") system = mmbse.get_system(system_id) model = mmbse.get_system_model(system_id, model_name) # Get specification from Specification model assert any( dependency["name"] == "Specification" for dependency in model["input_dependencies"] ) spec_model = mmbse.get_system_model(system_id, "Specification") pprint.pprint(spec_model) # Retrieve parameters from the specification model output_parameters = mmbse.get_model_output_parameter_list(spec_model["id"]) print(f"Rref: {output_parameters['Rref']}") .. rst-class:: sphx-glr-timing **Total running time of the script:** ( 0 minutes 0.000 seconds) .. _sphx_glr_download_gen_examples_design_geometry_from_specifications.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: design_geometry_from_specifications.py ` .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: design_geometry_from_specifications.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_