The characteristic length scale
is 100 µm (or 100 × 10⁻⁶ m). The nondimensional length
can be calculated as: where x is the dimensional length from your data.
The characteristic temperature scale is derived from the temperature difference
, where
is 500 K and
is 300 K. The nondimensional temperature
can be calculated as: whereT is the dimensional temperature from your data.
Here, we'll create a simulated temperature distribution over the length of 0 to 100 µm.
x = linspace(0, 100, 50);
T = linspace(300, 500, 50);
x_tilde = x * 1e-6 / L_s;
T_tilde = (T - T_i) / (T_f - T_i);
plot(x_tilde, T_tilde, 'o-', 'LineWidth', 2);
xlabel('Nondimensional Length \(\tilde{x}\)', 'Interpreter', 'latex');
ylabel('Nondimensional Temperature \(\tilde{T}\)', 'Interpreter', 'latex');
title('Nondimensionalized Temperature Profile');