SimulationTemplateLink
#
- class ansys.speos.core.kernel.simulation_template.SimulationTemplateLink(db, key)#
Bases:
ansys.speos.core.kernel.crud.CrudItem
Link object for simulation template in database.
- Parameters:
- db
ansys.speos.core.kernel.simulation_template.SimulationTemplateStub
Database to link to.
- key
str
Key of the simulation_template in the database.
- db
- Parameters:
key (str)
Examples
>>> from ansys.speos.core.speos import Speos >>> from ansys.api.speos.simulation.v1 import simulation_template_pb2 >>> from ansys.speos.core.kernel.simulation_template import ( ... ProtoSimulationTemplate, ... ) >>> speos = Speos(host="localhost", port=50098) >>> sim_t_db = speos.client.simulation_templates() >>> sim_t_message = ProtoSimulationTemplate(name="Direct") >>> sim_t_message.direct_mc_simulation_template.geom_distance_tolerance = 0.01 >>> sim_t_message.direct_mc_simulation_template.max_impact = 100 >>> sim_t_message.direct_mc_simulation_template.weight.minimum_energy_percentage = 0.005 >>> sim_t_message.direct_mc_simulation_template.colorimetric_standard = ( ... simulation_template_pb2.CIE_1931 ... ) >>> sim_t_message.direct_mc_simulation_template.dispersion = True >>> sim_t_link = sim_t_db.create(message=sim_t_message)
Overview#
Import detail#
from ansys.speos.core.kernel.simulation_template import SimulationTemplateLink
Method detail#
- SimulationTemplateLink.__str__()#
Return the string representation of the simulation_template.
- SimulationTemplateLink.get()#
Get the datamodel from database.
- Returns:
simulation_template.SimulationTemplate
SimulationTemplate datamodel.
- SimulationTemplateLink.set(data)#
Change datamodel in database.
- Parameters:
- data
simulation_template.SimulationTemplate
New simulation_template datamodel.
- data
- SimulationTemplateLink.delete()#
Remove datamodel from database.