Imports an Icepak data file (4 column csv file with columns x, y, z, temperature) and some optional arguments to an INTERCONNECT schematic design. It interpolates the temperature map to assign temperature to the elements in the schematic with an active "temperature" property and overwrites the existing temperature expressions, unless this has been deactivated in the optional argument struct.
Syntax |
Description |
---|---|
importtemperaturemap(filename, option); |
Import the Icepak data file (.csv file) from the specified filename with the optional arguments in the struct "option". |
Parameter |
Default value |
Type |
Description |
---|---|---|---|
filename |
required |
string |
The name of the csv file to import. May contain complete path to file, or path relative to current working directory |
option |
optional |
struct |
The optional arguments are:
|
Example
The following script command will import the temperature map data in "myfile.csv" to the current INTERCONNECT schematic design.
importtemperaturemap("myfile.csv",{"x": 100e-9, "y": 100e-9, "z": 0, "z span": 200e-9, "visualize": true, "apply to schematic": true});