@@ -248,7 +248,7 @@ def launch_remote_modeler(
248248
249249 version : str, default: None
250250 Version of the Geometry service to run in the three-digit format.
251- For example, "232 ". If you do not specify the version, the server
251+ For example, "241 ". If you do not specify the version, the server
252252 chooses the version.
253253 client_log_level : int, default: logging.INFO
254254 Log level for the client. The default is ``logging.INFO``.
@@ -367,7 +367,7 @@ def launch_modeler_with_discovery_and_pimlight(
367367 ----------
368368 version : str, default: None
369369 Version of Discovery to run in the three-digit format.
370- For example, "232 ". If you do not specify the version, the server
370+ For example, "241 ". If you do not specify the version, the server
371371 chooses the version.
372372 client_log_level : int, default: logging.INFO
373373 Log level for the client. The default is ``logging.INFO``.
@@ -410,7 +410,7 @@ def launch_modeler_with_geometry_service_and_pimlight(
410410 ----------
411411 version : str, default: None
412412 Version of the Geometry service to run in the three-digit format.
413- For example, "232 ". If you do not specify the version, the server
413+ For example, "241 ". If you do not specify the version, the server
414414 chooses the version.
415415 client_log_level : int, default: logging.INFO
416416 Log level for the client. The default is ``logging.INFO``.
@@ -453,7 +453,7 @@ def launch_modeler_with_spaceclaim_and_pimlight(
453453 ----------
454454 version : str, default: None
455455 Version of SpaceClaim to run in the three-digit format.
456- For example, "232 ". If you do not specify the version, the server
456+ For example, "241 ". If you do not specify the version, the server
457457 chooses the version.
458458 client_log_level : int, default: logging.INFO
459459 Log level for the client. The default is ``logging.INFO``.
@@ -505,14 +505,15 @@ def launch_modeler_with_geometry_service(
505505 Parameters
506506 ----------
507507 product_version: int, optional
508- The product version to be started. Goes from v23.2 .1 to
508+ The product version to be started. Goes from v24 .1 to
509509 the latest. Default is ``None``.
510510 If a specific product version is requested but not installed locally,
511511 a SystemError will be raised.
512512
513513 **Ansys products versions and their corresponding int values:**
514514
515515 * ``241`` : Ansys 24R1
516+ * ``242`` : Ansys 24R2
516517 host: str, optional
517518 IP address at which the Geometry service will be deployed. By default,
518519 its value will be ``localhost``.
@@ -555,7 +556,7 @@ def launch_modeler_with_geometry_service(
555556 If the specified endpoint is already in use, a connection
556557 error will be raised.
557558 SystemError
558- If there is not an Ansys product 23.2 version or later installed
559+ If there is not an Ansys product 24.1 version or later installed
559560 a SystemError will be raised.
560561
561562 Returns
@@ -629,10 +630,6 @@ def launch_modeler_with_discovery(
629630):
630631 """Start Ansys Discovery locally using the ``ProductInstance`` class.
631632
632- .. note::
633-
634- Support for Ansys Discovery is restricted to Ansys 24.1 onward.
635-
636633 When calling this method, a standalone Discovery session is started.
637634 By default, if an endpoint is specified (by defining `host` and `port` parameters)
638635 but the endpoint is not available, the startup will fail. Otherwise, it will try to
@@ -641,14 +638,15 @@ def launch_modeler_with_discovery(
641638 Parameters
642639 ----------
643640 product_version: int, optional
644- The product version to be started. Goes from v23.2 .1 to
641+ The product version to be started. Goes from v24 .1 to
645642 the latest. Default is ``None``.
646643 If a specific product version is requested but not installed locally,
647644 a SystemError will be raised.
648645
649646 **Ansys products versions and their corresponding int values:**
650647
651648 * ``241`` : Ansys 24R1
649+ * ``242`` : Ansys 24R2
652650 host: str, optional
653651 IP address at which the Discovery session will be deployed. By default,
654652 its value will be ``localhost``.
@@ -690,7 +688,7 @@ def launch_modeler_with_discovery(
690688 ConnectionError
691689 If the specified endpoint is already in use, a connection error will be raised.
692690 SystemError:
693- If there is not an Ansys product 23.2 version or later installed
691+ If there is not an Ansys product 24.1 version or later installed
694692 or if a specific product's version is requested but not installed locally then
695693 a SystemError will be raised.
696694
@@ -707,11 +705,11 @@ def launch_modeler_with_discovery(
707705 >>> from ansys.geometry.core import launch_modeler_with_discovery
708706 >>> modeler = launch_modeler_with_discovery()
709707
710- Starting an Ansys Discovery V 23.2 session, on address ``10.171.22.44``, port ``5001``,
708+ Starting an Ansys Discovery V 24.1 session, on address ``10.171.22.44``, port ``5001``,
711709 with chatty logs, using API v231 and a ``300`` seconds timeout:
712710
713711 >>> from ansys.geometry.core import launch_modeler_with_discovery
714- >>> modeler = launch_modeler_with_discovery(product_version = 232 ,
712+ >>> modeler = launch_modeler_with_discovery(product_version = 241 ,
715713 host="10.171.22.44",
716714 port=5001,
717715 api_version= 231,
@@ -767,15 +765,15 @@ def launch_modeler_with_spaceclaim(
767765 Parameters
768766 ----------
769767 product_version: int, optional
770- The product version to be started. Goes from v23.2 .1 to
768+ The product version to be started. Goes from v24 .1 to
771769 the latest. Default is ``None``.
772770 If a specific product version is requested but not installed locally,
773771 a SystemError will be raised.
774772
775773 **Ansys products versions and their corresponding int values:**
776774
777- * ``232`` : Ansys 23R2 SP1
778775 * ``241`` : Ansys 24R1
776+ * ``242`` : Ansys 24R2
779777 host: str, optional
780778 IP address at which the SpaceClaim session will be deployed. By default,
781779 its value will be ``localhost``.
@@ -817,7 +815,7 @@ def launch_modeler_with_spaceclaim(
817815 ConnectionError
818816 If the specified endpoint is already in use, a connection error will be raised.
819817 SystemError
820- If there is not an Ansys product 23.2 version or later installed
818+ If there is not an Ansys product 24.1 version or later installed
821819 or if a specific product's version is requested but not installed locally then
822820 a SystemError will be raised.
823821
@@ -834,11 +832,11 @@ def launch_modeler_with_spaceclaim(
834832 >>> from ansys.geometry.core import launch_modeler_with_spaceclaim
835833 >>> modeler = launch_modeler_with_spaceclaim()
836834
837- Starting an Ansys SpaceClaim V 23.2 session, on address ``10.171.22.44``, port ``5001``,
835+ Starting an Ansys SpaceClaim V 24.1 session, on address ``10.171.22.44``, port ``5001``,
838836 with chatty logs, using API v231 and a ``300`` seconds timeout:
839837
840838 >>> from ansys.geometry.core import launch_modeler_with_spaceclaim
841- >>> modeler = launch_modeler_with_spaceclaim(product_version = 232 ,
839+ >>> modeler = launch_modeler_with_spaceclaim(product_version = 241 ,
842840 host="10.171.22.44",
843841 port=5001,
844842 api_version= 231,
0 commit comments