forked from TUM-I5/MolSim
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #73 from ManuelLerchner/67-sheet-4-task-3-simulati…
…on-of-a-falling-drop-liquid Simulation of a falling drop liquid
- Loading branch information
Showing
127 changed files
with
7,801 additions
and
2,715 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
input/body_collision.cub → ..._collision/body_collision_assignment2.cub
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
<?xml version="1.0"?> | ||
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="../simulation_schema.xsd"> | ||
|
||
<settings> | ||
<fps>24</fps> | ||
<video_length>30</video_length> | ||
<delta_t>0.005</delta_t> | ||
<end_time>10.0</end_time> | ||
<third_dimension>false</third_dimension> | ||
<particle_container> | ||
<linkedcells_container> | ||
<domain_size> | ||
<x>100</x> | ||
<y>100</y> | ||
<z>10</z> | ||
</domain_size> | ||
<cutoff_radius>3.0</cutoff_radius> | ||
<boundary_conditions> | ||
<left>Reflective</left> | ||
<right>Reflective</right> | ||
<bottom>Reflective</bottom> | ||
<top>Reflective</top> | ||
<back>Reflective</back> | ||
<front>Reflective</front> | ||
</boundary_conditions> | ||
</linkedcells_container> | ||
</particle_container> | ||
<force>LennardJones</force> | ||
<thermostat> | ||
<target_temperature>0</target_temperature> | ||
<max_temperature_change>0</max_temperature_change> | ||
<application_interval>10000000</application_interval> | ||
</thermostat> | ||
</settings> | ||
|
||
<particle_source> | ||
<sub_simulation> | ||
<name> | ||
Top Left | ||
</name> | ||
<file_name> | ||
./subsimulations/top_left.xml | ||
</file_name> | ||
</sub_simulation> | ||
|
||
<sub_simulation> | ||
<name> | ||
Bottom Left | ||
</name> | ||
<file_name> | ||
./subsimulations/bottom_left.xml | ||
</file_name> | ||
</sub_simulation> | ||
|
||
</particle_source> | ||
|
||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
<?xml version="1.0"?> | ||
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="../../simulation_schema.xsd"> | ||
|
||
<settings> | ||
<fps>24</fps> | ||
<video_length>30</video_length> | ||
<delta_t>0.005</delta_t> | ||
<end_time>1.0</end_time> | ||
<third_dimension>false</third_dimension> | ||
<particle_container> | ||
<linkedcells_container> | ||
<domain_size> | ||
<x>100</x> | ||
<y>100</y> | ||
<z>10</z> | ||
</domain_size> | ||
<cutoff_radius>3.0</cutoff_radius> | ||
<boundary_conditions> | ||
<left>Reflective</left> | ||
<right>Reflective</right> | ||
<bottom>Reflective</bottom> | ||
<top>Reflective</top> | ||
<back>Reflective</back> | ||
<front>Reflective</front> | ||
</boundary_conditions> | ||
</linkedcells_container> | ||
</particle_container> | ||
<force>LennardJones</force> | ||
<thermostat> | ||
<target_temperature>0</target_temperature> | ||
<max_temperature_change>0</max_temperature_change> | ||
<application_interval>10000000</application_interval> | ||
</thermostat> | ||
</settings> | ||
|
||
<particle_source> | ||
<sphere_spawner> | ||
<center> | ||
<x>20.0</x> | ||
<y>20.0</y> | ||
<z>5</z> | ||
</center> | ||
<radius>5</radius> | ||
<grid_spacing>1.1225</grid_spacing> | ||
<temperature>0.1</temperature> | ||
<mass>1.0</mass> | ||
<velocity> | ||
<x>0.0</x> | ||
<y>0.0</y> | ||
<z>0.0</z> | ||
</velocity> | ||
<type>0</type> | ||
</sphere_spawner> | ||
</particle_source> | ||
|
||
</configuration> |
Oops, something went wrong.