27 lines
785 B
C#
27 lines
785 B
C#
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;
|
|
} |