Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • Lizzzka007/plotter-nse
1 result
Show changes
Commits on Source (2)
......@@ -5,7 +5,7 @@ Python plot tools for nse projects.
Clone current repository and go the downloaded directory
```shell
git clone http://tesla.parallel.ru/Lizzzka007/plotter-nse
git clone http://tesla.parallel.ru/Lizzzka007/plotter-nse.git
cd plotter-nse
```
......@@ -154,6 +154,24 @@ Optional arguments:
4. float or [float] $`mval`$
5. bool or [bool] $`transpose`$
### Plotting slices of 3D data
```python
plotter.slice(filename, plane, slice_position)
```
Function saves `plane` slice contour plots of 3D data contained in file `filename` into the *out/oname* file.
Positional arguments:
1. string $`filename`$
2. string $`plane`$ can be `xy`, `xz`, `yz`
3. float $`slice_position`$
Optional arguments:
1. string $`out`$
2. string or [string] $`oname`$
3. string or [string] $`var`$
4. float or [float] $`mval`$
5. bool or [bool] $`transpose`$
### Plotting difference of N-d data
```python
plotter.plot_diff(filename, ndim)
......