Merge pull request #50 from PhasicFlow/tutorials
tutorials updated after multigridNBS
This commit is contained in:
commit
9e93a659eb
|
@ -34,16 +34,16 @@ model
|
||||||
|
|
||||||
contactSearch
|
contactSearch
|
||||||
{
|
{
|
||||||
method NBS; // method for broad search particle-particle
|
method multiGridNBS; // method for broad search particle-particle
|
||||||
wallMapping cellsSimple; // method for broad search particle-wall
|
wallMapping cellMapping; // method for broad search particle-wall
|
||||||
|
|
||||||
NBSInfo
|
multiGridNBSInfo
|
||||||
{
|
{
|
||||||
updateFrequency 10; // each 10 timesteps, update neighbor list
|
updateFrequency 10; // each 10 timesteps, update neighbor list
|
||||||
sizeRatio 1.1; // bounding box size to particle diameter (max)
|
sizeRatio 1.1; // bounding box size to particle diameter (max)
|
||||||
}
|
}
|
||||||
|
|
||||||
cellsSimpleInfo
|
cellMappingInfo
|
||||||
{
|
{
|
||||||
updateFrequency 10; // each 10 timesteps, update neighbor list
|
updateFrequency 10; // each 10 timesteps, update neighbor list
|
||||||
cellExtent 0.6; // bounding box for particle-wall search (> 0.5)
|
cellExtent 0.6; // bounding box for particle-wall search (> 0.5)
|
||||||
|
|
|
@ -34,16 +34,16 @@ model
|
||||||
|
|
||||||
contactSearch
|
contactSearch
|
||||||
{
|
{
|
||||||
method NBS; // method for broad search particle-particle
|
method multiGridNBS; // method for broad search particle-particle
|
||||||
wallMapping cellsSimple; // method for broad search particle-wall
|
wallMapping cellMapping; // method for broad search particle-wall
|
||||||
|
|
||||||
NBSInfo
|
multiGridNBSInfo
|
||||||
{
|
{
|
||||||
updateFrequency 10; // each 10 timesteps, update neighbor list
|
updateFrequency 10; // each 10 timesteps, update neighbor list
|
||||||
sizeRatio 1.1; // bounding box size to particle diameter (max)
|
sizeRatio 1.1; // bounding box size to particle diameter (max)
|
||||||
}
|
}
|
||||||
|
|
||||||
cellsSimpleInfo
|
cellMappingInfo
|
||||||
{
|
{
|
||||||
updateFrequency 10; // each 10 timesteps, update neighbor list
|
updateFrequency 10; // each 10 timesteps, update neighbor list
|
||||||
cellExtent 0.6; // bounding box for particle-wall search (> 0.5)
|
cellExtent 0.6; // bounding box for particle-wall search (> 0.5)
|
||||||
|
|
|
@ -55,7 +55,7 @@ model
|
||||||
contactSearch
|
contactSearch
|
||||||
{
|
{
|
||||||
method NBS; // method for broad search particle-particle
|
method NBS; // method for broad search particle-particle
|
||||||
wallMapping cellsSimple; // method for broad search particle-wall
|
wallMapping cellMapping; // method for broad search particle-wall
|
||||||
|
|
||||||
NBSInfo
|
NBSInfo
|
||||||
{
|
{
|
||||||
|
@ -63,7 +63,7 @@ contactSearch
|
||||||
sizeRatio 1.1; // bounding box size to particle diameter (max)
|
sizeRatio 1.1; // bounding box size to particle diameter (max)
|
||||||
}
|
}
|
||||||
|
|
||||||
cellsSimpleInfo
|
cellMappingInfo
|
||||||
{
|
{
|
||||||
updateFrequency 10; // each 20 timesteps, update neighbor list
|
updateFrequency 10; // each 20 timesteps, update neighbor list
|
||||||
cellExtent 0.6; // bounding box for particle-wall search (> 0.5)
|
cellExtent 0.6; // bounding box for particle-wall search (> 0.5)
|
||||||
|
|
|
@ -47,7 +47,7 @@ model
|
||||||
contactSearch
|
contactSearch
|
||||||
{
|
{
|
||||||
method NBS; // method for broad search particle-particle
|
method NBS; // method for broad search particle-particle
|
||||||
wallMapping cellsSimple; // method for broad search particle-wall
|
wallMapping cellMapping; // method for broad search particle-wall
|
||||||
|
|
||||||
NBSInfo
|
NBSInfo
|
||||||
{
|
{
|
||||||
|
@ -55,7 +55,7 @@ contactSearch
|
||||||
sizeRatio 1.1; // bounding box size to particle diameter (max)
|
sizeRatio 1.1; // bounding box size to particle diameter (max)
|
||||||
}
|
}
|
||||||
|
|
||||||
cellsSimpleInfo
|
cellMappingInfo
|
||||||
{
|
{
|
||||||
updateFrequency 20; // each 20 timesteps, update neighbor list
|
updateFrequency 20; // each 20 timesteps, update neighbor list
|
||||||
cellExtent 0.6; // bounding box for particle-wall search (> 0.5)
|
cellExtent 0.6; // bounding box for particle-wall search (> 0.5)
|
||||||
|
|
|
@ -35,7 +35,7 @@ model
|
||||||
contactSearch
|
contactSearch
|
||||||
{
|
{
|
||||||
method NBS; // method for broad search particle-particle
|
method NBS; // method for broad search particle-particle
|
||||||
wallMapping cellsSimple; // method for broad search particle-wall
|
wallMapping cellMapping; // method for broad search particle-wall
|
||||||
|
|
||||||
NBSInfo
|
NBSInfo
|
||||||
{
|
{
|
||||||
|
@ -43,7 +43,7 @@ contactSearch
|
||||||
sizeRatio 1.1; // bounding box size to particle diameter (max)
|
sizeRatio 1.1; // bounding box size to particle diameter (max)
|
||||||
}
|
}
|
||||||
|
|
||||||
cellsSimpleInfo
|
cellMappingInfo
|
||||||
{
|
{
|
||||||
updateFrequency 20; // each 20 timesteps, update neighbor list
|
updateFrequency 20; // each 20 timesteps, update neighbor list
|
||||||
cellExtent 0.7; // bounding box for particle-wall search (> 0.5)
|
cellExtent 0.7; // bounding box for particle-wall search (> 0.5)
|
||||||
|
|
Loading…
Reference in New Issue