Mapping Temperature Results in .txt on a Mesh — Lesson 9

How do you read in temperature from .txt and map it onto the target mesh?

The main commands and steps are:

  1. Define arrays and tables to hold the source and target data. This is done through the command *DIM.
  2. Put the source data into a table, then copy the temperature and coordinates into two separate arrays. This is completed through *TREAD and *MFUN.
  3. Map the source data to target mesh by using *MOPER.
  4. Once mapping is done, use the *DO loop to apply the temperature using the BF command.