build(libcomposition): brought working build system into libcomposition

This commit is contained in:
2025-06-21 11:33:27 -04:00
parent 58de341056
commit db88e308de
24 changed files with 424 additions and 76 deletions

View File

@@ -5,7 +5,7 @@
#include <iostream>
#include "atomicSpecies.h"
namespace serif::atomic {
namespace fourdst::atomic {
struct Species {
std::string m_name; //< Name of the species
std::string m_el; //< Element symbol
@@ -101,9 +101,9 @@ namespace serif::atomic {
namespace std {
template<>
struct hash<serif::atomic::Species> {
size_t operator()(const serif::atomic::Species& s) const noexcept {
struct hash<fourdst::atomic::Species> {
size_t operator()(const fourdst::atomic::Species& s) const noexcept {
return std::hash<std::string>()(s.m_name);
}
};
} // namespace std
} // namespace std

View File

@@ -4,7 +4,7 @@
#include <string>
#include "atomicSpecies.h"
namespace serif::atomic {
namespace fourdst::atomic {
static const Species n_1("n-1", "n", 1, 1, 0, 1, 0.0, "B-", 782.347, 1.0086649159, 0.00047);
static const Species H_1("H-1", "H", -1, 0, 1, 1, 0.0, "B-", std::numeric_limits<double>::quiet_NaN(), 1.007825031898, 1.4e-05);
static const Species H_2("H-2", "H", 0, 1, 1, 2, 1112.2831, "B-", std::numeric_limits<double>::quiet_NaN(), 2.014101777844, 1.5e-05);

View File

@@ -0,0 +1 @@
subdir('atomic')