Skip to content

Commit 05e7ba1

Browse files
authored
Remove parametric and visualization code (#460)
1 parent 267a714 commit 05e7ba1

34 files changed

+29
-4648
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ jobs:
124124
restore-keys: |
125125
Python-${{ runner.os }}-${{ matrix.python-version }}
126126
127-
- name: Install pyfluent with post requirements
128-
run: make install-post
127+
- name: Install pyfluent
128+
run: make install
129129

130130
- name: Login to GitHub Container Registry
131131
uses: docker/login-action@v1
@@ -208,8 +208,8 @@ jobs:
208208
- name: Add version information
209209
run: make version-info
210210

211-
- name: Install pyfluent with post requirements
212-
run: make install-post
211+
- name: Install pyfluent with post
212+
run: make install
213213

214214
- name: Login to GitHub Container Registry
215215
uses: docker/login-action@v1
@@ -231,7 +231,7 @@ jobs:
231231
- name: Install again after codegen
232232
run: |
233233
rm -rf dist
234-
make install-post
234+
make install
235235
236236
- name: Unit Testing
237237
run: make unittest

.github/workflows/nightly-doc-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ jobs:
3030
sudo apt update
3131
sudo apt install pandoc libegl1
3232
33-
- name: Install pyfluent with post module
34-
run: make install-post
33+
- name: Install pyfluent
34+
run: make install
3535

3636
- name: Login to GitHub Container Registry
3737
uses: docker/login-action@v1

Makefile

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,6 @@ version-info:
1212
@bash -c "date -u +'Build date: %B %d, %Y %H:%M UTC ShaID: <id>' | xargs -I date sed -i 's/_VERSION_INFO = .*/_VERSION_INFO = \"date\"/g' src/ansys/fluent/core/__init__.py"
1313
@bash -c "git --no-pager log -n 1 --format='%h' | xargs -I hash sed -i 's/<id>/hash/g' src/ansys/fluent/core/__init__.py"
1414

15-
install-post:
16-
@pip install -r requirements_build.txt
17-
@python setup.py sdist
18-
@python setup.py bdist_wheel
19-
@find dist -name "*.whl" -exec pip install {}[post] \;
20-
2115
install-pyvistaqt-requirements:
2216
@sudo apt update
2317
@sudo apt install libegl1 -y

doc/source/_static/DP_table.png

-48.7 KB
Binary file not shown.

doc/source/api/index.rst

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,4 @@ Here we should discuss the different API modules at a high level.
1414
:maxdepth: 4
1515
:hidden:
1616

17-
core/index
18-
parametric
19-
post/index
17+
core/index

doc/source/api/parametric.rst

Lines changed: 0 additions & 12 deletions
This file was deleted.

doc/source/api/post/index.rst

Lines changed: 0 additions & 119 deletions
This file was deleted.

doc/source/api/post/pyvista_objects.rst

Lines changed: 0 additions & 13 deletions
This file was deleted.

doc/source/index.rst

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,6 @@ The primary package, ``ansys-fluent``, provides features such as:
5555
for more information.
5656
- Scripting using Fluent's TUI commands. See the :ref:`ref_solver_tui` module for
5757
more information about the available commands.
58-
- Scripting of a parametric study using Fluent.
59-
- Script post processing using Fluent's in-built post processing capabilities.
60-
See the :ref:`ref_postprocessing` module for more information.
61-
- Plotting of Fluent geometry and meshes using `PyVista
62-
<https://docs.pyvista.org>`_ from within a Python script or an
63-
interactive `Jupyter notebook <https://jupyter.org/>`_.
64-
- Access to Fluent surface based field data as Python objects via `NumPy
65-
<https://numpy.org/>`_ arrays
6658
- and more...
6759

6860
Beta Features

doc/source/users_guide/index.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ constituent modules and components.
2323
materials
2424
boundary_conditions
2525
solution
26-
postprocessing
27-
parametric_workflows
2826

2927

3028
PyFluent Basic Overview

0 commit comments

Comments
 (0)