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