44 lines
767 B
C#
44 lines
767 B
C#
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();
|
|
}
|
|
|
|
|
|
|
|
}
|