Skip to content

Re: thermal fluid and conjugate heat transfer

Due to recent bot attacks we have changed the sign-up process. If you want to participate in our forum, first register on this website and then send a message via our contact form.

Forums OpenLB General Topics thermal fluid and conjugate heat transfer Re: thermal fluid and conjugate heat transfer

#2548
mgaedtke
Participant

Hello Gao,

how about this:

Code:
double T_cold = 273.15;
double T_hot = 274.15;

double latticeTemperature(double physTemperature) {
return (physTemperature – T_cold) / (T_hot – T_cold);
}

This is untested but you should be able to achieve the conversion with something like it very easily.

Best, Max