saving . . . saved Velocity value has been deleted. Velocity value has been hidden .
Velocity value
Title
Question
Hello.
How can i change the velocity value from 1 m/s to 10 m/s.
Thanks.

OpenFOAM 2D-Laminar-Flow-in-a-channel 04-05 min 30-40 sec 03-05-18, 12:19 p.m. ArtemOcheredko

Answers:

Hi,
Since velocity is a vector, we need to give value as a tuple like (x-coord y-coord z-coord).
Open the U file located in the 0 directory.
The value for velocity in the inlet will be
inlet
{
type  fixedValue;
value uniform (1 0 0);
}

Change it to
inlet
{
type  fixedValue;
value uniform (10 0 0);
}


Regards
Sathish

21-05-18, 11:54 a.m. sathishk12


Log-in to answer to this question.