24 lines
670 B
C#
24 lines
670 B
C#
using VirtualChemistry.Constants;
|
|
|
|
namespace VirtualChemistry.Chemistry.Bonds.Implements;
|
|
/// <summary>
|
|
/// bond # 3
|
|
/// </summary>
|
|
public class DBond : BaseBond
|
|
{
|
|
/// <inheritdoc />
|
|
public override string BondType => ChemistryConstant.BondTypes.D;
|
|
|
|
/// <inheritdoc />
|
|
public override int BondNumber => 3;
|
|
|
|
/// <inheritdoc />
|
|
public override SU3 KernelStateMatrix => ChemistryConstant.BondKernels.BondKernelD;
|
|
|
|
/// <inheritdoc />
|
|
public override SU3 AdjointStateMatrix => ChemistryConstant.BondAdjoints.BondAdjointD;
|
|
|
|
/// <inheritdoc />
|
|
public override SU3 EigenStateMatrix => ChemistryConstant.BondEigenStates.BondEigenStateD;
|
|
}
|