How Can I Define Material Properties Data as Function?

HyperXtrude allows specific entities in material packet to be defined as Function or table.
  1. You will need to add a function packet as shown below.
  2. Refer to that function name in material data packet

    BEGIN FUNCTIONS

    EXPRESSION SpHeatf "{Temp} {expr 0.5*($Temp) + 500 }"

    BEGIN MATERIALS

    Workpiece AA2014 {

    ConstitutiveModel = "SineHypINv"

    Density = 2.8000000e+003

    SpecificHeat = SpHeatf

    … .

    ...

    }

    END