m4
This commit is contained in:
27
src/Chemistry/Atoms/Implements/CxAtom.cs
Normal file
27
src/Chemistry/Atoms/Implements/CxAtom.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using VirtualChemistry.Constants;
|
||||
|
||||
namespace VirtualChemistry.Chemistry.Atoms.Implements;
|
||||
|
||||
/// <summary>
|
||||
/// atom # 13
|
||||
/// </summary>
|
||||
public class CxAtom : BaseAtom
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public override string Element => ChemistryConstant.Elements.Cx;
|
||||
|
||||
/// <inheritdoc />
|
||||
public override int AtomicNumber => 13;
|
||||
|
||||
/// <inheritdoc />
|
||||
public override SU3 AdjointState => ChemistryConstant.AtomAdjoints.AtomAdjointStateCx;
|
||||
|
||||
/// <inheritdoc />
|
||||
public override SU3 KernelState => ChemistryConstant.AtomKernels.AtomKernelStateCx;
|
||||
|
||||
/// <inheritdoc />
|
||||
public override SU3 EigenStateMatrix => ChemistryConstant.AtomEigenStates.AtomEigenStateCx;
|
||||
|
||||
/// <inheritdoc />
|
||||
public override double AtomicMass => ChemistryConstant.AtomicMasses.AtomicMassCx;
|
||||
}
|
||||
Reference in New Issue
Block a user