Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove parametric and visualization code #460

Merged
merged 8 commits into from
Jun 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ jobs:
restore-keys: |
Python-${{ runner.os }}-${{ matrix.python-version }}

- name: Install pyfluent with post requirements
run: make install-post
- name: Install pyfluent
run: make install

- name: Login to GitHub Container Registry
uses: docker/login-action@v1
Expand Down Expand Up @@ -208,8 +208,8 @@ jobs:
- name: Add version information
run: make version-info

- name: Install pyfluent with post requirements
run: make install-post
- name: Install pyfluent with post
run: make install

- name: Login to GitHub Container Registry
uses: docker/login-action@v1
Expand All @@ -231,7 +231,7 @@ jobs:
- name: Install again after codegen
run: |
rm -rf dist
make install-post
make install

- name: Unit Testing
run: make unittest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly-doc-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
sudo apt update
sudo apt install pandoc libegl1

- name: Install pyfluent with post module
run: make install-post
- name: Install pyfluent
run: make install

- name: Login to GitHub Container Registry
uses: docker/login-action@v1
Expand Down
6 changes: 0 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,6 @@ version-info:
@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"
@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"

install-post:
@pip install -r requirements_build.txt
@python setup.py sdist
@python setup.py bdist_wheel
@find dist -name "*.whl" -exec pip install {}[post] \;

install-pyvistaqt-requirements:
@sudo apt update
@sudo apt install libegl1 -y
Expand Down
Binary file removed doc/source/_static/DP_table.png
Binary file not shown.
4 changes: 1 addition & 3 deletions doc/source/api/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,4 @@ Here we should discuss the different API modules at a high level.
:maxdepth: 4
:hidden:

core/index
parametric
post/index
core/index
12 changes: 0 additions & 12 deletions doc/source/api/parametric.rst

This file was deleted.

119 changes: 0 additions & 119 deletions doc/source/api/post/index.rst

This file was deleted.

13 changes: 0 additions & 13 deletions doc/source/api/post/pyvista_objects.rst

This file was deleted.

8 changes: 0 additions & 8 deletions doc/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,6 @@ The primary package, ``ansys-fluent``, provides features such as:
for more information.
- Scripting using Fluent's TUI commands. See the :ref:`ref_solver_tui` module for
more information about the available commands.
- Scripting of a parametric study using Fluent.
- Script post processing using Fluent's in-built post processing capabilities.
See the :ref:`ref_postprocessing` module for more information.
- Plotting of Fluent geometry and meshes using `PyVista
<https://docs.pyvista.org>`_ from within a Python script or an
interactive `Jupyter notebook <https://jupyter.org/>`_.
- Access to Fluent surface based field data as Python objects via `NumPy
<https://numpy.org/>`_ arrays
- and more...

Beta Features
Expand Down
2 changes: 0 additions & 2 deletions doc/source/users_guide/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ constituent modules and components.
materials
boundary_conditions
solution
postprocessing
parametric_workflows


PyFluent Basic Overview
Expand Down
Loading