m4
This commit is contained in:
23
src/Chemistry/Bonds/Implements/DBond.cs
Normal file
23
src/Chemistry/Bonds/Implements/DBond.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user