-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bd46aa4
commit 446f6ec
Showing
12 changed files
with
50 additions
and
64 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ The simulation is rendered in a cubic universe of constant size, enforcing perio | |
|
||
## Installation | ||
|
||
The first step consists of configuring SENPAI for your machine and use case. This is done by editing the constants in `headers.config.h`. | ||
The first step consists of configuring SENPAI for your machine and use case. This is done by editing the constants in `headers/config.h`. | ||
|
||
On UNIX systems, compilation is achieved using the provided makefile. No additional software is required. | ||
|
||
|
@@ -72,25 +72,5 @@ This will tell SENPAI to simulate the contents of `examples/DES.mol` at STP for | |
|
||
This will have SENPAI load 1000 water molecules from `examples/water.mol`, arrange them so that the total potential energy is lower than 100 pJ, and finally simulate the system at 300 Kelvin for 1 ns, saving the render in `water_render.xyz`. | ||
|
||
## Questions and Answers | ||
|
||
Q: Why are you doing this? Go out, the sun's out. | ||
|
||
A: The sun can't simulate deep eutectic solvents. | ||
|
||
----- | ||
|
||
Q: Who are you? | ||
|
||
A: Thomas Murgia, 19y old at the time of writing this. I'm a second year undergraduate student of chemistry at the Université Toulouse 3 in France. | ||
|
||
I plan to keep going with projects like those and hopefully get involved in purely academic and fundamental research in chemistry until the end of my days. | ||
|
||
----- | ||
|
||
Q: Are you looking for grad programs? Or even internships? | ||
|
||
A: Definitely. E-mail me at <[email protected]> (academic email). I'm open to all offers :) | ||
|
||
|
||
# A complete list of functions and structures is available in the wiki, so as to make contributions easier. Documentation on the way. |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Dihydrogen | ||
Murgia Thomas | ||
Murgia Sasha | ||
A single dihydrogen molecule | ||
2 1 SENPAI | ||
-0.31 0.0 0.0 2 0.0 0.06 4.02 | ||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Ethane | ||
Murgia Thomas | ||
Murgia Sasha | ||
A single ethane molecule | ||
8 7 SENPAI | ||
-0.7560 0.0000 0.0000 8 0.0 1.704 4.23 | ||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Water | ||
Murgia Thomas | ||
Murgia Sasha | ||
A single water molecule | ||
3 2 SENPAI | ||
0.0000 0.0000 0.0000 18 -0.82 0.650 3.166 | ||
|
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 |
---|---|---|
|
@@ -18,8 +18,8 @@ | |
" \\___ \\| __| | . ` | ___/ /\\ \\ | | \n"\ | ||
" ____) | |____| |\\ | | / ____ \\ _| |_ \n"\ | ||
" |_____/|______|_| \\_|_| /_/ \\_\\_____| Simplified Evolutive N-body Processing and Analytics for Integration\n\n"\ | ||
"<< 2018-2019 Thomas MURGIA - SENPAI and its source code are licensed under the terms of the MIT license >>\n" \ | ||
"<< [email protected] | https://github.com/Garuda1/senpai >> \n" | ||
"<< 2018-2019 Sasha MURGIA - SENPAI and its source code are licensed under the terms of the MIT license >>\n" \ | ||
"<< [email protected] | https://github.com/Garuda1/senpai >> \n" | ||
|
||
|
||
#define TEXT_FAILURE "[" COLOUR_RED "FAILURE" COLOUR_RESET "] " | ||
|
@@ -79,7 +79,7 @@ | |
#define TEXT_INFO_ATOMS "Atoms..................%ld\n" | ||
#define TEXT_INFO_TEMPERATURE "Temperature............%lf K\n" | ||
#define TEXT_INFO_PRESSURE "Pressure...............%lf hPa\n" | ||
#define TEXT_INFO_DENSITY "Density................%lf g.cm-1\n" | ||
#define TEXT_INFO_DENSITY "Density................%lf g.cm-3\n" | ||
#define TEXT_INFO_POTENTIAL_ENERGY "Total potential energy.%lf pJ\n" | ||
#define TEXT_INFO_UNIVERSE_SIZE "Universe size ........%lf pm\n" | ||
#define TEXT_INFO_SIMULATION_TIME "Simulation time........%lf ns\n" | ||
|
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