You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Documentation: improvements for the DPF Server getting started section (#675)
* Environment flag replaced by environment variable
* Update customer portal link (support before)
* Fix DPFPreviewLicenseAgreement term
* DPF page of the ansys customer portal
* Update the pydpf-core and post related information in getting_started_with_dpf_server
* Update Ansys Installer install instructions in index of getting_started
* Make the information about the DPF Preview License Agreement clearer
* entry/premium space clearer
* print(entry_server.context)
* Add Install with plotting capabilities section in install and troubleshooting
* Fix ref_compatibility
* Update entry/premium capabilities check/checkout information
* Update troubleshooting
* Update troubleshoot (pyvista sentence)
* Update docs/source/user_guide/troubleshooting.rst
Co-authored-by: PProfizi <[email protected]>
* Update docs/source/getting_started/index.rst
Co-authored-by: PProfizi <[email protected]>
* increments typo
* Replace via by using
* Small fixes after building
* Small fixes
Co-authored-by: PProfizi <[email protected]>
Copy file name to clipboardExpand all lines: docs/source/getting_started/index.rst
+10-7Lines changed: 10 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,12 +30,14 @@ Installing DPF Server
30
30
---------------------
31
31
32
32
#. DPF Server is packaged within the **Ansys Unified Installer** starting with Ansys 2021 R1.
33
-
To use it, install Ansys following the installer instructions. If you experience problems,
34
-
see :ref:`Environment variable section <ref_compatibility>`. For information on getting
33
+
To use it, download the standard installation using your preferred distribution channel,
34
+
and install Ansys following the installer instructions. If you experience problems,
35
+
see :ref:`Environment variable section <target_environment_variable_with_dpf_section>`. For information on getting
35
36
a licensed copy of Ansys, visit the `Ansys website <https://www.ansys.com/>`_.
36
37
37
-
#. DPF Server is available as a **standalone** package (independent of the Ansys installer) on the `Ansys Customer Portal <https://support.ansys.com/Home/HomePage>`_.
38
-
As explained in :ref:`Ansys licensing section <ref_getting_started_with_dpf_server>`,
38
+
#. DPF Server is available as a **standalone** package (independent of the Ansys installer) on the
39
+
`DPF page of the Ansys Customer Portal <https://download.ansys.com/>`_.
40
+
As explained in :ref:`Ansys licensing section <target_to_ansys_license_mechanism>`,
39
41
DPF Server is protected by an Ansys license mechanism. Once you have access to an
40
42
Ansys license, install DPF Server:
41
43
@@ -52,15 +54,16 @@ Installing DPF Server
52
54
pip install -e .
53
55
54
56
* DPF Server is protected using the license terms specified in the
55
-
``DPFUserLicensingAgreement.txt`` file, which is available on the
57
+
``DPFPreviewLicenseAgreement`` file, which is available on the
56
58
Ansys Customer Portal. To accept these terms, you must set the
57
-
following environment flag:
59
+
following environment variable:
58
60
59
61
.. code::
60
62
61
63
ANSYS_DPF_ACCEPT_LA=Y
62
64
63
-
65
+
For more information about the license terms, see the :ref:`DPF Preview License Agreement<target_to_license_terms>`
66
+
section.
64
67
65
68
For installation methods that do not use pip, such as using **Docker containers**, see
Copy file name to clipboardExpand all lines: docs/source/user_guide/getting_started_with_dpf_server.rst
+26-14Lines changed: 26 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,16 +31,23 @@ Installing DPF Server
31
31
.. code::
32
32
33
33
pip install -e .
34
-
35
-
PyDPF-Core and PyDPF-Post python modules can now be used. The instructions to install and get started with PyDPF-Core
36
-
(ansys-dpf-core module) can be found at `Getting Started section <https://dpf.docs.pyansys.com/getting_started/install.html>`_.
37
34
38
35
Using DPF Server
39
36
----------------
40
37
38
+
DPF Server use is protected using license terms. For more information, see the :ref:`DPF Preview License Agreement<target_to_license_terms>` section.
39
+
41
40
Running the DPF Server with PyDPF
42
41
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
43
42
43
+
PyDPF-Core is a Python client API communicating with a **DPF Server**, either
44
+
through the network using gRPC or directly in the same process. PyDPF-Post is a Python
45
+
module for postprocessing based on PyDPF-Core.
46
+
47
+
Both PyDPF-Core and PyDPF-Post python modules can be used with the DPF Server. The instructions to install and get started with PyDPF-Core
48
+
can be found at `PyDPF-Core, Getting Started section <https://dpf.docs.pyansys.com/getting_started/install.html>`_. The instructions to install and get
49
+
started with PyDPF-Post can be found at `PyDPF-Post, Getting Started section <https://post.docs.pyansys.com/getting_started/install.html>`_.
50
+
44
51
With PyDPF-Core and PyDPF-Post, the first creation of most DPF entities will start a DPF Server with the current default configuration and context.
45
52
For example, the following code will automatically start a DPF Server behind the scenes:
46
53
@@ -71,20 +78,20 @@ Running the DPF Server in a Docker container
0 commit comments