25 lines
671 B
C#
25 lines
671 B
C#
using VirtualChemistry.Constants;
|
|
|
|
namespace VirtualChemistry.Chemistry.Bonds.Implements;
|
|
|
|
/// <summary>
|
|
/// bond # 1
|
|
/// </summary>
|
|
public class MBond : BaseBond
|
|
{
|
|
/// <inheritdoc />
|
|
public override string BondType => ChemistryConstant.BondTypes.M;
|
|
|
|
/// <inheritdoc />
|
|
public override int BondNumber => 1;
|
|
|
|
/// <inheritdoc />
|
|
public override SU3 KernelStateMatrix => ChemistryConstant.BondKernels.BondKernelM;
|
|
|
|
/// <inheritdoc />
|
|
public override SU3 AdjointStateMatrix => ChemistryConstant.BondAdjoints.BondAdjointM;
|
|
|
|
/// <inheritdoc />
|
|
public override SU3 EigenStateMatrix => ChemistryConstant.BondEigenStates.BondEigenStateM;
|
|
|
|
} |