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