Metadata-Version: 2.1
Name: cst-geometry
Version: 0.1.4
Summary: Package for modeling in CST Microwave studio using python
Home-page: https://github.com/konstantgr/cst_geometry_manager
License: MIT
Author: konstantgr
Author-email: konstantin.grotov@metalab.ifmo.ru
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Project-URL: Repository, https://github.com/konstantgr/cst_geometry_manager
Description-Content-Type: text/x-rst

CST geometry manager
====================

It's a package that allows you to model geometries contain wires and
then export it into CST Microwave Studio 2021 project using python.

Features
--------

-  One file format for all wire geometries
-  Сreate a CST project directly from a script or notebook.
-  Convenient data structure for creating your own unique complex
   geometries from wires

Install
=======
For simple installation use pip: 
::

   pip install cst-geometry


Usage
-----

During using scripts or notebooks for creating projects all the CST Microwave studio windows must be closed
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Wire
------------------

``Wire`` objects serves to create ``Geometry`` objects. Wire object initialized using start point of wire ``point0``, finish point of wire ``point1`` and its radius ``radius``. As needed after initializing you can use ``length`` property. ``point0`` and ``point1`` are vectors of cartesian coordinates.

.. code:: python

   from cst_geometry import Wire

   x0 = 0; y0 = 0; z0 = 0
   x1 = 1; y1 = 1; z1 = 1
   radius = 0.5
   
   wire = Wire(
      point0 = (x0, y0, z0),
      point1 = (x1, y1, z1),
      radius = radius
   )
   print(wire.length)  # Returns length of wire


Geometry
------------------
``Geometry`` object allows to easily export geometry to CST Microwave Studio or just export .txt file with geometry parameters. For initializing ``Geometry`` object you should pass a list of ``Wire`` objects. ``create_cst_project`` is a method for creating a .cst project with geometry model. ``export_geometry`` is a method for exporting geometry as .txt file.

.. code:: python

   from cst_geometry import Wire, Geometry


   def create_wires_by_rule():
       wires = []
       # ...
       # Your code for creating Wire objects
       # ...
       wires.append(wire)
       return wires
       
   wires = create_wires_by_rule()
   geometry = geometry(wires)
   
   
To create your own geometry use ``Wire`` and ``Geometry`` classes.

.. code:: python

   import numpy as np
   from cst_geometry import Wire, Geometry


   def get_circular_geometry(radius, lengths_of_wires, wire_radius=1e-3, delta_angle=0):
       number_of_wires = len(lengths_of_wires)
       angles = np.linspace(0, 2 * np.pi, number_of_wires, endpoint=False) + delta_angle

       wires = []
       for i, length in enumerate(lengths_of_wires):
           phi = angles[i]
           wire = Wire(
               point0=(radius * np.cos(phi), radius * np.sin(phi), -length / 2),
               point1=(radius * np.cos(phi), radius * np.sin(phi), length / 2),
               radius=wire_radius
           )
           wires.append(wire)

       return Geometry(wires)

Examples
--------

.. code:: python
   
    from cst_geometry import simple_geometries
    
    # Path to CST DESIGN ENVIRONMENT.exe
    path_to_CST_DE = r"Absolute\Path\To\CST DESIGN ENVIRONMENT.exe"
   
    # Route to folder with .txt geometries and CST projects
    route_to_folder = r"Absolute\Path\To\FOLDER"


    def circular_geometry_equal_wires(length, number_of_wires, radius):
    	lengths = [length for i in range(number_of_wires)]

    	circular_geometry = simple_geometries.get_circular_geometry(
        		radius=radius, lengths_of_wires=lengths, wire_radius=1e-3, delta_angle=0
    	)
    	return circular_geometry

    # During using scripts or notebooks for creating projects 
    # all the CST Microwave studio windows must be closed !!!
    
    # Creating an array of 18 vertical aligned wires with length 2
    # on of imaginary cylinder with radius 4
    circular_geometry = circular_geometry_equal_wires(2, 18, 4)
    output = circular_geometry.create_cst_project(
        name="circular_geometry",
        path_to_CST_DE=path_to_CST_DE,
        path_to_geometry_folder=route_to_folder,
        path_to_CST_project=route_to_folder
    )


This code creates simple geometry contain 18 wires equally distributed on
imaginary cylinder. Then ``create_cst_project`` method creates project.
To start using scripts firstly need to change ``path_to_CST_DE``
variable. CST project create in cst\_project folder.


.. image:: examples/CST_example.gif

Several examples with CST projects are located in ``examples/`` folder.



