Skip to content

Choosing a value for latticeU and charU

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1775

    Hello,rnrnI need some help in the choice of a value for latticeU and charU.rnrnI read that the latticeU is proportional to Mach number. Could I used the same value of this dimensionless number?rnrnAnd about the charU, is it reasonable to use the average of the inlet velocity, for example?rnrnThanks!

    #2180
    thomas
    Member

    Hi Liliana,rnrnplease excuse the late answer, we’ve been busy publishing the new release.rnrnYou’re right, charU is the characteristic velocity in SI units (m/s), that you use for computing the Reynolds number. And is usually chosen to be a maximal velocity of your system. So you’ll be fine with the mean inlet velocity, if the velocity doesn’t increase much. Better would be to take the maximal velocity.rnrnLatticeU implicitly defines the time step size and is given in lattice units. It is connected to the Mach number, as 1/latticeU is approx the number of time steps a pressure wave needs to cross one lattice node. So for latticeU = 1 you get about the speed of sound (Mach 1), which would be a bad choice for LBMs don’t work well at high mach numbers. A better choice for a start is latticeU = 0.1 and slowly decreasing for more stability.rnrnCharU and latticeU are connected in a way, that charU/latticeU is a conversion factor between lattice units and SI units. Meaning that if you choose charU = 1. [m/s] and latticeU = 0.05 and during your simulation at some point you get a lattice velocity of 0.1 your physical velocity at that point is 0.1 * 1./0.05 = 2 [m/s].rnrnFurthermore, you can use CharU and latticeU to compute the time step size in SI units (seconds) as:rn# physTime = latticeU/charU * latticeLrnon the other hand, if you want a fixed time step, you can compute latticeU:rn# latticeU = physTime * charU / latticeLrnagain be careful as for large time steps your simulation will diverge.rnrnRegardsrnThomas

    #2181

    Hi Thomas,rnrnthank you so much for your answer!rnCertainly, it will help a lot in our simulations!rnrnWe are trying to understand the units and the inputs of the code in order to simulate an model that was used in experimental tests. So, we have all the physical parameters, such as the velocity and the size of the model.rnrnBest wishes,rnLiliana.

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.