ExportNodeCoordinatesRegion

Support for exportation

Abstract Class ExportNodeCoordinatesRegion

SubTypes

Fields Summary

Field
Description
coordSys
Coordinate System of exported coordinates
file
Export file
lengthUnit
Length unit (meter if any)
mechanicalSetPosition
Position of the mechanical set of the support (if existing) in the file to export

Methods Summary

no methods

Fields Details

coordSys
coordSys : Coordinate System of exported coordinates - [0..1] CoordSys
file
file : Export file - [1..1] DataExportFormat
lengthUnit
lengthUnit : Length unit (meter if any) - [0..1] LengthUnit
mechanicalSetPosition
mechanicalSetPosition : Position of the mechanical set of the support (if existing) in the file to export - [1..1] MechanicalSetReferenceOrCurrentPosition

Method Details

no methods

Introduction

  • Create Scripts

    The functionality of the HyperMesh Tcl Modify Command commands are available through Tcl. Additionally, commands that allow you to extract information from the HyperWorks Desktop database, such as entity ID numbers on a mark, a list of assemblies, component names, elements per component, nodes per element, node values, and so forth. These are known as HyperMesh Tcl Query Command commands. They are used to query information from the database or template system.

  • Run Scripts

    Tcl/Tk scripts can be run in several ways.

  • Commands and Functions

  • Solver Templates

    Solver templates are ASCII data files containing HyperMesh Template Language Commands and HyperMesh Template Language Functions.

  • MotionView

  • Templex and Math Reference Guide

  • Script and Model Library

    The Script and Model Library is a database of freely accessible scripts and models posted by users and Altair engineers.

  • View All Altair Simulation Help

    hm_exportoptimizationcards

    Exports a Radioss optimization file.

    Syntax

    hm_exportoptimizationcards type filename export_template

    Type

    HyperMesh Tcl Query Command

    Description

    Exports a Radioss optimization file.

    Inputs

    type
    The type of file to write:
    1 - Export optimization file only
    filename
    The full path and filename of the output optimization file (*.radopt). Paths with spaces must be enclosed in quotes.
    This can also be the Starter file name, or the Engine file name. The optimization file name is derived from this name.
    export_template
    The full path and filename of the optimization export template. Paths with spaces must be enclosed in quotes.

    Examples

    To export the optimization file, deriving the name from the model file C:/my_files/model_0000.rad:

    hm_exportoptimizationcards 1 "C:/my_files/model_0000.rad" "[hm_info -appinfo SPECIFIEDPATH TEMPLATES_DIR]/feoutput/radioss/optientities.blk"

    Errors

    Incorrect usage results in a Tcl error. To detect errors, you can use the catch command:
    if { [ catch {command_name...} ] } {
       # Handle error
    }

    Version History

    2019