I want to apply BFE heat load and respective time steps from .csv file in transient thermal analysis.
I have 2 columns in file (1st: time, 2nd: Power loss). Apply them onto elemental named selection.
for time and BFE load as values, my working code was as follows:
/prep7
time,ARG1 ! time step value
nsubst,10,10,10,off
ALLSEL
CMSEL,S,eins,ELEM ! eins is the elemental named selection.
BFE,ALL,HGEN,,ARG2 ! Heat power loss value ARG2
ALLSEL
/solu
solve
KBC,1
time,2e-4
ALLSEL
BFEDELE,all,HGEN
NSUBST,10,10,10,off
solve
now i want to take set of values ARG1,ARG2 from csv file. Thank you in advance