> 1. Does Basilisk provide us a chance to compare - field
> units[kg/m/s/...]? I basically learn a lot comparing and relating units
> of any scalar/ vector fields. So, I was wondering about this.
I don't understand your question. If what you mean is what are the units
used by Basilisk? the answer: whatever units you choose (e.g. you could
choose to express the problem in S.I. units or c.g.s. units etc...).
> 2. How can we select/ differentiate between a 2D/ 3D case? Is it only
> through specification of a Neumann B.C along third dimension and by
> default everything is assumed to be in 3D?
By default Basilisk uses a quadtree (i.e. 2D) adaptive grid. To use a 1D
adaptive grid, you could do (at the top of the file):
#include "grid/bitree.h"
or a 3D adaptive grid:
#include "grid/octree.h"
> 3. Regarding spuriousCurrent (equilibrium droplet case - I am guessing
> its a 3D case as of now but using gfsView2D for analysis confuses me)
It is 2D.
> I came across this specific portion in test case description:
>
> //We set the constant viscosity field…
>
> |const face <
http://basilisk.fr/Basilisk%20C#face-and-vertex-fields>
> vector muc[] = {MU,MU}; μ = muc;
>
> I get an error here but I used MU which is a preprocessor for ||μ.||
Don't cut and paste code from the web page, use the "raw page" source
code (follow the "Raw page source" link in the "This page" menu on the
left-hand-side):
http://basilisk.fr/_showraw/src/test/spurious.c
> 4. A silly question,
> While comparing dimless time against dimless Velocity I guess it is not
> dimless.
> Something like Ca(for U_max) and (t*sigma)/(MU*DIAMETER) (for time)
> should work.
> Is it so or else I understood it wrong?
As indicated in the legend of the figure, the dimensionless time is
t\mu/D^2 and the dimensionless velocity is U\sqrt{D/\sigma}.
cheers
Stephane