pymwm


Namepymwm JSON
Version 0.5.6 PyPI version JSON
download
home_pagehttps://github.com/mnishida/PyMWM
SummaryA metallic waveguide mode solver
upload_time2024-02-09 09:37:43
maintainer
docs_urlNone
authorMunehiro Nishida
requires_python>=3.7
licenseMIT
keywords metallic waveguide mode electromagnetism
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            # PyMWM

[![PyPI version][pypi-image]][pypi-link]
[![Anaconda Version][anaconda-v-image]][anaconda-v-link]
[![Lint and Test][github-workflow-image]][github-workflow-link]

[pypi-image]: https://badge.fury.io/py/pymwm.svg
[pypi-link]: https://pypi.org/project/pymwm
[anaconda-v-image]: https://anaconda.org/mnishida/pymwm/badges/version.svg
[anaconda-v-link]: https://anaconda.org/mnishida/pymwm
[github-workflow-image]: https://github.com/mnishida/PyMWM/actions/workflows/pythonapp.yml/badge.svg
[github-workflow-link]: https://github.com/mnishida/PyMWM/actions/workflows/pythonapp.yml

PyMWM is a metallic waveguide mode solver written in Python.

It provides the dispersion relation, i.e. the relation between propagation constant β = α + iγ (with phase constant α and attenuation constant γ) and angular frequency ω, for cylindrical waveguide, coaxial waveguide, and planer waveguide (slits). It also provides the distribution of mode fields.

## Version
0.5.6

## Install
#### Install and update using pip
```
$ pip install -U pymwm
```
#### Install using conda
```
$ conda create -n pymwm python=3.8
$ conda activate pymwm
$ conda install -c mnishida pymwm
$ pip install "ray[default]"
```

## Dependencies
- python 3
- numpy
- scipy
- pandas
- pytables
- ray
- matplotlib
- riip
## Uninstall
```
$ pip uninstall pymwm
```
or
```
$ conda deactivate
$ conda remove -n pymwm --all
```

## Usage
Let's consider a cylindrical waveguide whose radius is 0.15μm filled with water (refractive index : 1.333) surrounded by gold.
You can specify the materials by the parameters for [RII_Pandas](https://github.com/mnishida/RII_Pandas).
Wavelength range is set by the parameters 'wl_min' (which is set 0.5 μm here) and 'wl_max' (1.0 μm).
PyMWM compute the dispersion relation the two complex values, ω (complex angular frequency) and β (propagation constant).
The range of the imaginary part of ω is set from -2π/wl_imag to 0 with the parameter 'wl_imag'.
Usually, the cylindrical waveguide mode is specified by two integers, n and m.
The number of sets indexed by n and m are indicated by the parameters 'num_n' and 'num_m', respectively.
```
>>> import pymwm
>>> params = {
     'core': {'shape': 'cylinder', 'size': 0.15, 'fill': {'RI': 1.333}},
     'clad': {'book': 'Au', 'page': 'Stewart-DLF'},
     'bounds': {'wl_max': 1.0, 'wl_min': 0.5, 'wl_imag': 10.0},
     'modes': {'num_n': 6, 'num_m': 2}
     }
>>> wg = pymwm.create(params)
```
If the parameters are set for the first time, the creation of waveguide-mode object will take a quite long time, because a sampling survey of βs in the complex plane of ω will be conducted and the obtained data is registered in the database.
The second and subsequent creations are done instantly.
You can check the obtained waveguide modes in the specified range by showing the attribute 'modes';
```
>>> wg.modes
{'h': [('E', 1, 1),
  ('E', 2, 1),
  ('E', 3, 1),
  ('E', 4, 1),
  ('M', 0, 1),
  ('M', 1, 1)],
 'v': [('E', 0, 1),
  ('E', 1, 1),
  ('E', 2, 1),
  ('E', 3, 1),
  ('E', 4, 1),
  ('M', 1, 1)]}
```
where 'h' ('v') means that the modes have horizontally (vertically) oriented electric fields on the x axis. The tuple (pol, n, m) with pol being 'E' or 'M' indicates TE-like or TM-like mode indexed by n and m.
You can get β at ω=8.0 rad/μm for TM-like mode with n=0 and m=1 by
```
>>> wg.beta(8.0, ('M', 0, 1))
(0.06187318716518497+10.363105296313996j)
```
and for TE-like mode with n=1 and m=2 by
```
>>> wg.beta(8.0, ('E', 1, 2))
(0.14261514314942403+19.094726281995463j)
```
For more information, see the [tutorial notebook](https://github.com/mnishida/PyMWM/blob/master/docs/notebooks/00_tutorial.ipynb) and [User's Guide](https://pymwm.readthedocs.io/en/latest/).

## Examples
### Cylindrical waveguide
#### Propagation constants
<img src="https://github.com/mnishida/PyMWM/wiki/images/phase_constant.png"
     alt="phase constant" title="phase constant" width="400"/>
<img src="https://github.com/mnishida/PyMWM/wiki/images/attenuation_constant.png"
     alt="attenuation constant" title="attenuation constant" width="400"/>

#### Electric field and magnetic field distributions
* TE01
<img src="https://github.com/mnishida/PyMWM/wiki/images/TE01_electric.png"
     alt="TE01 electric field" title="TE01 electric field" width="300"/>
<img src="https://github.com/mnishida/PyMWM/wiki/images/TE01_magnetic.png"
     alt="TE01 magnetic field" title="TE01 magnetic field" width="300"/>
* HE11
<img src="https://github.com/mnishida/PyMWM/wiki/images/HE11_electric.png"
     alt="HE11 electric field" title="HE11 electric field" width="300"/>
<img src="https://github.com/mnishida/PyMWM/wiki/images/HE11_magnetic.png"
     alt="HE11 magnetic field" title="HE11 magnetic field" width="300"/>
* HE12
<img src="https://github.com/mnishida/PyMWM/wiki/images/HE12_electric.png"
     alt="HE12 electric field" title="HE12 electric field" width="300"/>
<img src="https://github.com/mnishida/PyMWM/wiki/images/HE12_magnetic.png"
     alt="HE12 magnetic field" title="HE12 magnetic field" width="300"/>
* HE21
<img src="https://github.com/mnishida/PyMWM/wiki/images/HE21_electric.png"
     alt="HE21 electric field" title="HE21 electric field" width="300"/>
<img src="https://github.com/mnishida/PyMWM/wiki/images/HE21_magnetic.png"
     alt="HE21 magnetic field" title="HE21 magnetic field" width="300"/>
* HE31
<img src="https://github.com/mnishida/PyMWM/wiki/images/HE31_electric.png"
     alt="HE31 electric field" title="HE31 electric field" width="300"/>
<img src="https://github.com/mnishida/PyMWM/wiki/images/HE31_magnetic.png"
     alt="HE31 magnetic field" title="HE31 magnetic field" width="300"/>
* TM01
<img src="https://github.com/mnishida/PyMWM/wiki/images/TM01_electric.png"
     alt="TM01 electric field" title="TM01 electric field" width="300"/>
<img src="https://github.com/mnishida/PyMWM/wiki/images/TM01_magnetic.png"
     alt="TM01 magnetic field" title="TM01 magnetic field" width="300"/>
* TM02
<img src="https://github.com/mnishida/PyMWM/wiki/images/TM02_electric.png"
     alt="TM02 electric field" title="TM02 electric field" width="300"/>
<img src="https://github.com/mnishida/PyMWM/wiki/images/TM02_magnetic.png"
     alt="TM02 magnetic field" title="TM02 magnetic field" width="300"/>
* EH11
<img src="https://github.com/mnishida/PyMWM/wiki/images/EH11_electric.png"
     alt="EH11 electric field" title="EH11 electric field" width="300"/>
<img src="https://github.com/mnishida/PyMWM/wiki/images/EH11_magnetic.png"
     alt="EH11 magnetic field" title="EH11 magnetic field" width="300"/>
* EH21
<img src="https://github.com/mnishida/PyMWM/wiki/images/EH21_electric.png"
     alt="EH21 electric field" title="EH21 electric field" width="300"/>
<img src="https://github.com/mnishida/PyMWM/wiki/images/EH21_magnetic.png"
     alt="EH21 magnetic field" title="EH21 magnetic field" width="300"/>

### Slit waveguide
#### Propagation constants
<img src="https://github.com/mnishida/PyMWM/wiki/images/phase_constant_slit.png"
     alt="phase constant (slit)" title="phase constant (slit)" width="400"/>
<img src="https://github.com/mnishida/PyMWM/wiki/images/attenuation_constant_slit.png"
     alt="attenuation constant (slit)" title="attenuation constant (slit)" width="400"/>

#### Electric field and magnetic field distributions
* TE1
<img src="https://github.com/mnishida/PyMWM/wiki/images/TE1_electric.png"
     alt="TE1 electric field" title="TE1 electric field" width="300"/>
<img src="https://github.com/mnishida/PyMWM/wiki/images/TE1_magnetic.png"
     alt="TE1 magnetic field" title="TE1 magnetic field" width="300"/>
* TE2
<img src="https://github.com/mnishida/PyMWM/wiki/images/TE2_electric.png"
     alt="TE2 electric field" title="TE2 electric field" width="300"/>
<img src="https://github.com/mnishida/PyMWM/wiki/images/TE2_magnetic.png"
     alt="TE2 magnetic field" title="TE2 magnetic field" width="300"/>
* TE3
<img src="https://github.com/mnishida/PyMWM/wiki/images/TE3_electric.png"
     alt="TE3 electric field" title="TE3 electric field" width="300"/>
<img src="https://github.com/mnishida/PyMWM/wiki/images/TE3_magnetic.png"
     alt="TE3 magnetic field" title="TE3 magnetic field" width="300"/>
* TE4
<img src="https://github.com/mnishida/PyMWM/wiki/images/TE4_electric.png"
     alt="TE4 electric field" title="TE4 electric field" width="300"/>
<img src="https://github.com/mnishida/PyMWM/wiki/images/TE4_magnetic.png"
     alt="TE4 magnetic field" title="TE4 magnetic field" width="300"/>
* TM0
<img src="https://github.com/mnishida/PyMWM/wiki/images/TM0_electric.png"
     alt="TM0 electric field" title="TM0 electric field" width="300"/>
<img src="https://github.com/mnishida/PyMWM/wiki/images/TM0_magnetic.png"
     alt="TM0 magnetic field" title="TM0 magnetic field" width="300"/>
* TM1
<img src="https://github.com/mnishida/PyMWM/wiki/images/TM1_electric.png"
     alt="TM1 electric field" title="TM1 electric field" width="300"/>
<img src="https://github.com/mnishida/PyMWM/wiki/images/TM1_magnetic.png"
     alt="TM1 magnetic field" title="TM1 magnetic field" width="300"/>
* TM2
<img src="https://github.com/mnishida/PyMWM/wiki/images/TM2_electric.png"
     alt="TM2 electric field" title="TM2 electric field" width="300"/>
<img src="https://github.com/mnishida/PyMWM/wiki/images/TM2_magnetic.png"
     alt="TM2 magnetic field" title="TM2 magnetic field" width="300"/>
* TM3
<img src="https://github.com/mnishida/PyMWM/wiki/images/TM3_electric.png"
     alt="TM3 electric field" title="TM3 electric field" width="300"/>
<img src="https://github.com/mnishida/PyMWM/wiki/images/TM3_magnetic.png"
     alt="TM3 magnetic field" title="TM3 magnetic field" width="300"/>

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/mnishida/PyMWM",
    "name": "pymwm",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "metallic waveguide mode,electromagnetism",
    "author": "Munehiro Nishida",
    "author_email": "mnishida@hiroshima-u.ac.jp",
    "download_url": "https://files.pythonhosted.org/packages/b9/ed/99d27032ae763da42e46d92d532bb246662d8b0a28cf973889df2caed0ad/pymwm-0.5.6.tar.gz",
    "platform": null,
    "description": "# PyMWM\n\n[![PyPI version][pypi-image]][pypi-link]\n[![Anaconda Version][anaconda-v-image]][anaconda-v-link]\n[![Lint and Test][github-workflow-image]][github-workflow-link]\n\n[pypi-image]: https://badge.fury.io/py/pymwm.svg\n[pypi-link]: https://pypi.org/project/pymwm\n[anaconda-v-image]: https://anaconda.org/mnishida/pymwm/badges/version.svg\n[anaconda-v-link]: https://anaconda.org/mnishida/pymwm\n[github-workflow-image]: https://github.com/mnishida/PyMWM/actions/workflows/pythonapp.yml/badge.svg\n[github-workflow-link]: https://github.com/mnishida/PyMWM/actions/workflows/pythonapp.yml\n\nPyMWM is a metallic waveguide mode solver written in Python.\n\nIt provides the dispersion relation, i.e. the relation between propagation constant &beta; = &alpha; + i&gamma; (with phase constant &alpha; and attenuation constant &gamma;) and angular frequency &omega;, for cylindrical waveguide, coaxial waveguide, and planer waveguide (slits). It also provides the distribution of mode fields.\n\n## Version\n0.5.6\n\n## Install\n#### Install and update using pip\n```\n$ pip install -U pymwm\n```\n#### Install using conda\n```\n$ conda create -n pymwm python=3.8\n$ conda activate pymwm\n$ conda install -c mnishida pymwm\n$ pip install \"ray[default]\"\n```\n\n## Dependencies\n- python 3\n- numpy\n- scipy\n- pandas\n- pytables\n- ray\n- matplotlib\n- riip\n## Uninstall\n```\n$ pip uninstall pymwm\n```\nor\n```\n$ conda deactivate\n$ conda remove -n pymwm --all\n```\n\n## Usage\nLet's consider a cylindrical waveguide whose radius is 0.15&mu;m filled with water (refractive index : 1.333) surrounded by gold.\nYou can specify the materials by the parameters for [RII_Pandas](https://github.com/mnishida/RII_Pandas).\nWavelength range is set by the parameters 'wl_min' (which is set 0.5 &mu;m here) and 'wl_max' (1.0 &mu;m).\nPyMWM compute the dispersion relation the two complex values, &omega; (complex angular frequency) and &beta; (propagation constant).\nThe range of the imaginary part of &omega; is set from -2&pi;/wl_imag to 0 with the parameter 'wl_imag'.\nUsually, the cylindrical waveguide mode is specified by two integers, n and m.\nThe number of sets indexed by n and m are indicated by the parameters 'num_n' and 'num_m', respectively.\n```\n>>> import pymwm\n>>> params = {\n     'core': {'shape': 'cylinder', 'size': 0.15, 'fill': {'RI': 1.333}},\n     'clad': {'book': 'Au', 'page': 'Stewart-DLF'},\n     'bounds': {'wl_max': 1.0, 'wl_min': 0.5, 'wl_imag': 10.0},\n     'modes': {'num_n': 6, 'num_m': 2}\n     }\n>>> wg = pymwm.create(params)\n```\nIf the parameters are set for the first time, the creation of waveguide-mode object will take a quite long time, because a sampling survey of &beta;s in the complex plane of &omega; will be conducted and the obtained data is registered in the database.\nThe second and subsequent creations are done instantly.\nYou can check the obtained waveguide modes in the specified range by showing the attribute 'modes';\n```\n>>> wg.modes\n{'h': [('E', 1, 1),\n  ('E', 2, 1),\n  ('E', 3, 1),\n  ('E', 4, 1),\n  ('M', 0, 1),\n  ('M', 1, 1)],\n 'v': [('E', 0, 1),\n  ('E', 1, 1),\n  ('E', 2, 1),\n  ('E', 3, 1),\n  ('E', 4, 1),\n  ('M', 1, 1)]}\n```\nwhere 'h' ('v') means that the modes have horizontally (vertically) oriented electric fields on the x axis. The tuple (pol, n, m) with pol being 'E' or 'M' indicates TE-like or TM-like mode indexed by n and m.\nYou can get &beta; at &omega;=8.0 rad/&mu;m for TM-like mode with n=0 and m=1 by\n```\n>>> wg.beta(8.0, ('M', 0, 1))\n(0.06187318716518497+10.363105296313996j)\n```\nand for TE-like mode with n=1 and m=2 by\n```\n>>> wg.beta(8.0, ('E', 1, 2))\n(0.14261514314942403+19.094726281995463j)\n```\nFor more information, see the [tutorial notebook](https://github.com/mnishida/PyMWM/blob/master/docs/notebooks/00_tutorial.ipynb) and [User's Guide](https://pymwm.readthedocs.io/en/latest/).\n\n## Examples\n### Cylindrical waveguide\n#### Propagation constants\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/phase_constant.png\"\n     alt=\"phase constant\" title=\"phase constant\" width=\"400\"/>\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/attenuation_constant.png\"\n     alt=\"attenuation constant\" title=\"attenuation constant\" width=\"400\"/>\n\n#### Electric field and magnetic field distributions\n* TE01\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/TE01_electric.png\"\n     alt=\"TE01 electric field\" title=\"TE01 electric field\" width=\"300\"/>\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/TE01_magnetic.png\"\n     alt=\"TE01 magnetic field\" title=\"TE01 magnetic field\" width=\"300\"/>\n* HE11\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/HE11_electric.png\"\n     alt=\"HE11 electric field\" title=\"HE11 electric field\" width=\"300\"/>\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/HE11_magnetic.png\"\n     alt=\"HE11 magnetic field\" title=\"HE11 magnetic field\" width=\"300\"/>\n* HE12\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/HE12_electric.png\"\n     alt=\"HE12 electric field\" title=\"HE12 electric field\" width=\"300\"/>\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/HE12_magnetic.png\"\n     alt=\"HE12 magnetic field\" title=\"HE12 magnetic field\" width=\"300\"/>\n* HE21\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/HE21_electric.png\"\n     alt=\"HE21 electric field\" title=\"HE21 electric field\" width=\"300\"/>\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/HE21_magnetic.png\"\n     alt=\"HE21 magnetic field\" title=\"HE21 magnetic field\" width=\"300\"/>\n* HE31\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/HE31_electric.png\"\n     alt=\"HE31 electric field\" title=\"HE31 electric field\" width=\"300\"/>\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/HE31_magnetic.png\"\n     alt=\"HE31 magnetic field\" title=\"HE31 magnetic field\" width=\"300\"/>\n* TM01\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/TM01_electric.png\"\n     alt=\"TM01 electric field\" title=\"TM01 electric field\" width=\"300\"/>\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/TM01_magnetic.png\"\n     alt=\"TM01 magnetic field\" title=\"TM01 magnetic field\" width=\"300\"/>\n* TM02\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/TM02_electric.png\"\n     alt=\"TM02 electric field\" title=\"TM02 electric field\" width=\"300\"/>\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/TM02_magnetic.png\"\n     alt=\"TM02 magnetic field\" title=\"TM02 magnetic field\" width=\"300\"/>\n* EH11\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/EH11_electric.png\"\n     alt=\"EH11 electric field\" title=\"EH11 electric field\" width=\"300\"/>\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/EH11_magnetic.png\"\n     alt=\"EH11 magnetic field\" title=\"EH11 magnetic field\" width=\"300\"/>\n* EH21\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/EH21_electric.png\"\n     alt=\"EH21 electric field\" title=\"EH21 electric field\" width=\"300\"/>\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/EH21_magnetic.png\"\n     alt=\"EH21 magnetic field\" title=\"EH21 magnetic field\" width=\"300\"/>\n\n### Slit waveguide\n#### Propagation constants\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/phase_constant_slit.png\"\n     alt=\"phase constant (slit)\" title=\"phase constant (slit)\" width=\"400\"/>\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/attenuation_constant_slit.png\"\n     alt=\"attenuation constant (slit)\" title=\"attenuation constant (slit)\" width=\"400\"/>\n\n#### Electric field and magnetic field distributions\n* TE1\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/TE1_electric.png\"\n     alt=\"TE1 electric field\" title=\"TE1 electric field\" width=\"300\"/>\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/TE1_magnetic.png\"\n     alt=\"TE1 magnetic field\" title=\"TE1 magnetic field\" width=\"300\"/>\n* TE2\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/TE2_electric.png\"\n     alt=\"TE2 electric field\" title=\"TE2 electric field\" width=\"300\"/>\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/TE2_magnetic.png\"\n     alt=\"TE2 magnetic field\" title=\"TE2 magnetic field\" width=\"300\"/>\n* TE3\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/TE3_electric.png\"\n     alt=\"TE3 electric field\" title=\"TE3 electric field\" width=\"300\"/>\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/TE3_magnetic.png\"\n     alt=\"TE3 magnetic field\" title=\"TE3 magnetic field\" width=\"300\"/>\n* TE4\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/TE4_electric.png\"\n     alt=\"TE4 electric field\" title=\"TE4 electric field\" width=\"300\"/>\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/TE4_magnetic.png\"\n     alt=\"TE4 magnetic field\" title=\"TE4 magnetic field\" width=\"300\"/>\n* TM0\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/TM0_electric.png\"\n     alt=\"TM0 electric field\" title=\"TM0 electric field\" width=\"300\"/>\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/TM0_magnetic.png\"\n     alt=\"TM0 magnetic field\" title=\"TM0 magnetic field\" width=\"300\"/>\n* TM1\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/TM1_electric.png\"\n     alt=\"TM1 electric field\" title=\"TM1 electric field\" width=\"300\"/>\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/TM1_magnetic.png\"\n     alt=\"TM1 magnetic field\" title=\"TM1 magnetic field\" width=\"300\"/>\n* TM2\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/TM2_electric.png\"\n     alt=\"TM2 electric field\" title=\"TM2 electric field\" width=\"300\"/>\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/TM2_magnetic.png\"\n     alt=\"TM2 magnetic field\" title=\"TM2 magnetic field\" width=\"300\"/>\n* TM3\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/TM3_electric.png\"\n     alt=\"TM3 electric field\" title=\"TM3 electric field\" width=\"300\"/>\n<img src=\"https://github.com/mnishida/PyMWM/wiki/images/TM3_magnetic.png\"\n     alt=\"TM3 magnetic field\" title=\"TM3 magnetic field\" width=\"300\"/>\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A metallic waveguide mode solver",
    "version": "0.5.6",
    "project_urls": {
        "Homepage": "https://github.com/mnishida/PyMWM"
    },
    "split_keywords": [
        "metallic waveguide mode",
        "electromagnetism"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b9ed99d27032ae763da42e46d92d532bb246662d8b0a28cf973889df2caed0ad",
                "md5": "d33762e8d8e46851c1078d89f2d4ab9b",
                "sha256": "313d7f3d4c0e9f2c7f1191585a766e370942a8c029b1954d66a5e92d99800e8e"
            },
            "downloads": -1,
            "filename": "pymwm-0.5.6.tar.gz",
            "has_sig": false,
            "md5_digest": "d33762e8d8e46851c1078d89f2d4ab9b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 4969865,
            "upload_time": "2024-02-09T09:37:43",
            "upload_time_iso_8601": "2024-02-09T09:37:43.755796Z",
            "url": "https://files.pythonhosted.org/packages/b9/ed/99d27032ae763da42e46d92d532bb246662d8b0a28cf973889df2caed0ad/pymwm-0.5.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-09 09:37:43",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "mnishida",
    "github_project": "PyMWM",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "pymwm"
}
        
Elapsed time: 0.19471s