2022-09-05 06:01:53 +00:00
|
|
|
/*------------------------------- phasicFlow ---------------------------------
|
|
|
|
O C enter of
|
|
|
|
O O E ngineering and
|
|
|
|
O O M ultiscale modeling of
|
|
|
|
OOOOOOO F luid flow
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
Copyright (C): www.cemf.ir
|
|
|
|
email: hamid.r.norouzi AT gmail.com
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
Licence:
|
|
|
|
This file is part of phasicFlow code. It is a free software for simulating
|
|
|
|
granular and multiphase flows. You can redistribute it and/or modify it under
|
|
|
|
the terms of GNU General Public License v3 or any other later versions.
|
|
|
|
|
|
|
|
phasicFlow is distributed to help others in their research in the field of
|
|
|
|
granular and multiphase flows, but WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
-----------------------------------------------------------------------------*/
|
2025-02-03 20:19:11 +00:00
|
|
|
REPORT(0)<<"Reading shapes dictionary..."<<END_REPORT;
|
|
|
|
pFlow::sphereShape spheres
|
|
|
|
(
|
|
|
|
pFlow::shapeFile__,
|
|
|
|
&Control.caseSetup(),
|
|
|
|
proprties
|
|
|
|
);
|
2022-09-05 06:01:53 +00:00
|
|
|
//
|
2024-03-24 10:57:16 +00:00
|
|
|
REPORT(0)<<"\nReading sphere particles . . ."<<END_REPORT;
|
2025-02-03 20:19:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
pFlow::sphereParticles sphParticles(Control, spheres);
|
2022-09-05 06:01:53 +00:00
|
|
|
|
|
|
|
//
|
2024-03-24 10:57:16 +00:00
|
|
|
REPORT(0)<<"\nCreating particle insertion object . . ."<<END_REPORT;
|
2023-02-19 19:35:35 +00:00
|
|
|
/*auto& sphInsertion =
|
2022-09-05 06:01:53 +00:00
|
|
|
Control.caseSetup().emplaceObject<sphereInsertion>(
|
|
|
|
objectFile(
|
|
|
|
insertionFile__,
|
|
|
|
"",
|
|
|
|
objectFile::READ_ALWAYS,
|
|
|
|
objectFile::WRITE_ALWAYS
|
|
|
|
),
|
|
|
|
sphParticles,
|
|
|
|
sphParticles.shapes()
|
2023-02-19 19:35:35 +00:00
|
|
|
);*/
|
2022-09-05 06:01:53 +00:00
|
|
|
|
2024-05-18 15:10:25 +00:00
|
|
|
auto sphInsertion = pFlow::sphereInsertion(
|
2023-02-19 19:35:35 +00:00
|
|
|
sphParticles,
|
2024-04-13 05:39:09 +00:00
|
|
|
sphParticles.spheres());
|
2022-09-05 06:01:53 +00:00
|
|
|
|
2024-03-24 10:57:16 +00:00
|
|
|
REPORT(0)<<"\nCreating interaction model for sphere-sphere contact and sphere-wall contact . . ."<<END_REPORT;
|
2024-05-18 15:10:25 +00:00
|
|
|
auto interactionPtr = pFlow::interaction::create(
|
2022-09-05 06:01:53 +00:00
|
|
|
Control,
|
|
|
|
sphParticles,
|
|
|
|
surfGeometry
|
|
|
|
);
|
|
|
|
|
|
|
|
auto& sphInteraction = interactionPtr();
|