Files
Hermeteus/src/HeterogeneousMixture.cs
2025-01-13 15:34:49 +00:00

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();
}
}