GithubHelp home page GithubHelp logo

Comments (2)

ProjectPhysX avatar ProjectPhysX commented on August 26, 2024

LBM uses a different unit system from SI units, to have the numerical values close to 1.0f where accuracy is best. You therefore have to convert from SI units to LBM units in main_setup(). You can set the unit conversion factors with units.set_m_kg_s(lbm_length, lbm_velocity, lbm_density=1.0f, si_length, si_velocity, si_density);; note that the average density in LBM units always is 1.0f. This command computes the three base units m, kg, s as conversion factors between LBM units and SI units. Afterwards you convert all other quantities such as the viscosity lbm_nu = units.nu(si_nu); and insert that in the LBM constructor.

By default, if not explicitly set with units.set_m_kg_s(...);, the conversion factors are all 1. So 1 LBM time step is converted to 1 second by default, that's why the numbers match in the setup you have.

The Elapsed Time / Remaining Time is displayed based on the lbm.run(...); command. It it's lbm.run(); without an argument, an infinite number of time steps is computed, until manually terminated by the user, and "Elapsed Time" is shown. It the number of time steps is set, for example lbm.run(10000u);, or better lbm.run(units.t(5.2f)); to run as many LBM time steps as equivalent to 5.2 seconds, the "Remaining Time" will be counted down.

If in main_setup() a while loop repeatedly computes small time intervals and generates images in between, then lbm.run(30u); is used with a small number as explicit argument, so the "Remaining Time" will be counted down for every iteration of the while loop, often only a few seconds, so it is possible to see "Remaining Time" always displaying "0s".

from fluidx3d.

trparry avatar trparry commented on August 26, 2024

Makes perfect sense thank you!

from fluidx3d.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.