add: measurements
This commit is contained in:
43
src/HeterogeneousMixture.cs
Normal file
43
src/HeterogeneousMixture.cs
Normal file
@@ -0,0 +1,43 @@
|
||||
using Skeleton.DataStructure.Link;
|
||||
|
||||
namespace Hermeteus;
|
||||
|
||||
public class HeterogeneousMixture
|
||||
{
|
||||
public HeterogeneousMixture()
|
||||
{
|
||||
Layers = new Link<HomogeneousMixture>();
|
||||
}
|
||||
|
||||
internal Link<HomogeneousMixture> Layers { get; }
|
||||
public double ExternalTemperature { get; internal set; }
|
||||
|
||||
|
||||
public void React()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
private void HeatExchange()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
private void Precipitate()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
private void Stand()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
internal void Add(HeterogeneousMixture m)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user