Skip to content
Draft
Changes from 1 commit
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
8 changes: 8 additions & 0 deletions src/ansys/fluent/core/launcher/standalone_launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@ def __init__(
topy: str | list | None = None,
start_watchdog: bool | None = None,
file_transfer_service: Any | None = None,
certificates_folder: str | None = None,
insecure_mode: bool = False,
):
"""
Launch a Fluent session in standalone mode.
Expand Down Expand Up @@ -175,6 +177,12 @@ def __init__(
GUI-less Fluent sessions started by PyFluent are properly closed when the current Python process ends.
file_transfer_service : Any
Service for uploading/downloading files to/from the server.
certificates_folder : str, optional
Path to the folder containing TLS certificates for Fluent's gRPC server.
insecure_mode : bool, optional
If True, Fluent's gRPC server will be started in insecure mode without TLS.
This mode is not recommended. For more details on the implications
and usage of insecure mode, refer to the Fluent documentation.

Raises
------
Expand Down
Loading