@@ -7,28 +7,28 @@ Server context
77When using a DPF Server released after Ansys 2023 R1, a distinction is introduced between two
88types of interaction with Ansys licenses:
99
10- - When the **Entry ** DPF Server context is active, underlying operations check if a valid Ansys
11- license exists, but are not allowed to check-out any license. This means that operations requiring
12- to check-out a license are not be available and raise an error.
1310- When the **Premium ** DPF Server context is active, underlying operations check if a valid
1411 Ansys license exists, and are allowed to check-out this license if needed. This means that all DPF
1512 features are available, but a license may be checked-out.
13+ - When the **Entry ** DPF Server context is active, underlying operations check if a valid Ansys
14+ license exists, but are not allowed to check-out any license. This means that operations requiring
15+ to check-out a license are not be available and raise an error.
1616
17- By default, using PyDPF-Post starts a DPF Server with the **Entry ** context active.
17+ By default, using PyDPF-Post starts a DPF Server with the **Premium ** context active.
1818To learn more, see the `PyDPF-Core documentation <https://dpf.docs.pyansys.com/dev/user_guide/server_context.html >`_.
1919
2020Change the default server context
2121---------------------------------
2222
23- The default context for the server is **Entry **. You can change the context using
23+ The default context for the server is **Premium **. You can change the context using
2424the ``ANSYS_DPF_SERVER_CONTEXT `` environment variable. For more information, see
2525the `ServerContext class documentation <https://dpf.docs.pyansys.com/dev/api/ansys.dpf.core.server_context.html >`_.
2626You can also change the server context with this code:
2727
2828.. code-block ::
2929
3030 from ansys.dpf import post
31- post.set_default_server_context(post.AvailableServerContexts.premium )
31+ post.set_default_server_context(post.AvailableServerContexts.entry )
3232
3333
3434 Release history
0 commit comments