-
Notifications
You must be signed in to change notification settings - Fork 0
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
2f304b3
commit 438aa9b
Showing
6 changed files
with
52 additions
and
43 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,4 +13,4 @@ jobs: | |
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
- name: Build | ||
run: make Build | ||
run: make build |
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,7 @@ | ||
#ifndef DATA_H | ||
#define DATA_H | ||
#include "./elements_1st_period.c" | ||
|
||
extern element_details hydrogen; | ||
|
||
#endif |
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,41 @@ | ||
#include "../element_type.h" | ||
|
||
element_details hydrogen = { | ||
"H", | ||
"Hydrogen", | ||
"1", | ||
"Nonmetal", | ||
"1.0080 u", | ||
"Gas", | ||
"1s1", | ||
"+1, -1", | ||
"2.2", | ||
"120 pm", | ||
"13.598 eV", | ||
"0.754 eV", | ||
"13.81 K", | ||
"20.28 K", | ||
"0.00008988 g/cm³", | ||
"1766", | ||
"https://pubchem.ncbi.nlm.nih.gov/element/1", | ||
}; | ||
|
||
element_details helium = { | ||
"He", | ||
"Helium", | ||
"2", | ||
"Noble Gas", | ||
"4.00260 u", | ||
"Gas", | ||
"1s2", | ||
"0", | ||
"N/A", | ||
"140 pm", | ||
" 24.587 eV", | ||
"N/A", | ||
"0.95 K", | ||
"4.22 K", | ||
"0.0001785 g/cm³", | ||
"1868", | ||
"https://pubchem.ncbi.nlm.nih.gov/element/2", | ||
}; |
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