diff --git a/doc/source/getting_started/index.rst b/doc/source/getting_started/index.rst index 428c670c..5e35caf5 100644 --- a/doc/source/getting_started/index.rst +++ b/doc/source/getting_started/index.rst @@ -5,7 +5,8 @@ Getting started =============== PyTwin provides Pythonic access to twin runtimes that were generated using -`Ansys Twin Builder and Ansys Twin Deployer `_. +`Ansys Twin Builder `_ and +`Ansys TwinAI `_. PyTwin supports twin runtimes generated using 2023 R1 and later. @@ -22,7 +23,7 @@ For twin runtimes generated with 2023 R1 SP1 and later versions: - if the TWIN file is exported as 'unlicensed', no license is needed to use PyTwin Both the features ``twin_builder_deployer`` and ``twin_runtime`` are included in the -Twin Deployer license file. Here is how you define the environment variable for specifying the location of +TwinAI license file. Here is how you define the environment variable for specifying the location of Ansys License Manager: .. code:: @@ -38,7 +39,7 @@ generated by `Ansys Twin Builder `_ +For more information on both Ansys Twin Builder and Ansys TwinAI, see +`Ansys Digital Twin `_ on the Ansys website. Project index diff --git a/src/ansys/pytwin/evaluate/tbrom.py b/src/ansys/pytwin/evaluate/tbrom.py index fdfd0ea7..5025b3e7 100644 --- a/src/ansys/pytwin/evaluate/tbrom.py +++ b/src/ansys/pytwin/evaluate/tbrom.py @@ -107,6 +107,7 @@ def _read_settings(filepath): namedselection = {} dimensionality = None name = None + outputname = None unit = None if "namedSelections" in data: @@ -121,11 +122,11 @@ def _read_settings(filepath): if "name" in data: name = data["name"] + outputname = name.replace(" ", "_") if "unit" in data: unit = data["unit"] tbromns = dict() - outputname = name.replace(" ", "_") # Create list of name selections indexes for name, idsList in namedselection.items():