diff --git a/src/SharpProp/Fluids/IFluid.cs b/src/SharpProp/Fluids/IFluid.cs index a8fc38e..220fbc1 100644 --- a/src/SharpProp/Fluids/IFluid.cs +++ b/src/SharpProp/Fluids/IFluid.cs @@ -36,7 +36,7 @@ IKeyedInput secondInput ); /// - /// The process of isentropic compression to a given pressure. + /// The process of isentropic compression to given pressure. /// /// Pressure. /// @@ -48,7 +48,7 @@ IKeyedInput secondInput IFluid IsentropicCompressionTo(Pressure pressure); /// - /// The process of compression to a given pressure. + /// The process of compression to given pressure. /// /// Pressure. /// @@ -64,7 +64,7 @@ IKeyedInput secondInput IFluid CompressionTo(Pressure pressure, Ratio isentropicEfficiency); /// - /// The process of isenthalpic expansion to a given pressure. + /// The process of isenthalpic expansion to given pressure. /// /// Pressure. /// The state of the fluid at the end of the process. @@ -74,7 +74,7 @@ IKeyedInput secondInput IFluid IsenthalpicExpansionTo(Pressure pressure); /// - /// The process of isentropic expansion to a given pressure. + /// The process of isentropic expansion to given pressure. /// /// Pressure. /// The state of the fluid at the end of the process. @@ -84,7 +84,7 @@ IKeyedInput secondInput IFluid IsentropicExpansionTo(Pressure pressure); /// - /// The process of expansion to a given pressure. + /// The process of expansion to given pressure. /// /// Pressure. /// @@ -164,10 +164,10 @@ IKeyedInput secondInput IFluid HeatingTo(SpecificEnergy enthalpy, Pressure? pressureDrop = null); /// - /// Returns a bubble point at a given pressure. + /// Returns a bubble point at given pressure. /// /// Pressure. - /// A bubble point at a given pressure. + /// A bubble point at given pressure. IFluid BubblePointAt(Pressure pressure); /// @@ -178,10 +178,10 @@ IKeyedInput secondInput IFluid BubblePointAt(Temperature temperature); /// - /// Returns a dew point at a given pressure. + /// Returns a dew point at given pressure. /// /// Pressure. - /// A dew point at a given pressure. + /// A dew point at given pressure. IFluid DewPointAt(Pressure pressure); /// @@ -192,11 +192,11 @@ IKeyedInput secondInput IFluid DewPointAt(Temperature temperature); /// - /// Returns a two-phase point at a given pressure. + /// Returns a two-phase point at given pressure. /// /// Pressure. /// Vapor quality. - /// Two-phase point at a given pressure. + /// Two-phase point at given pressure. IFluid TwoPhasePointAt(Pressure pressure, Ratio quality); /// diff --git a/src/SharpProp/Fluids/IMixture.cs b/src/SharpProp/Fluids/IMixture.cs index d85aabb..7e33b81 100644 --- a/src/SharpProp/Fluids/IMixture.cs +++ b/src/SharpProp/Fluids/IMixture.cs @@ -11,7 +11,7 @@ public interface IMixture IJsonable { /// - /// List of selected names of pure fluids. + /// List of selected pure fluid names. /// IReadOnlyList Fluids { get; } diff --git a/src/SharpProp/Fluids/Mixture.cs b/src/SharpProp/Fluids/Mixture.cs index 46a26b2..2d6e3c9 100644 --- a/src/SharpProp/Fluids/Mixture.cs +++ b/src/SharpProp/Fluids/Mixture.cs @@ -6,7 +6,7 @@ public class Mixture : AbstractFluid, IMixture private const string AvailableBackend = "HEOS"; /// - /// List of selected names of pure fluids. + /// List of selected pure fluid names. /// List of mass-based fractions. /// /// Invalid input! Fluids and Fractions should be of the same length. diff --git a/src/SharpProp/SharpProp.csproj b/src/SharpProp/SharpProp.csproj index 382ca28..3032df4 100644 --- a/src/SharpProp/SharpProp.csproj +++ b/src/SharpProp/SharpProp.csproj @@ -1,9 +1,9 @@ - A simple, full-featured, lightweight, cross-platform CoolProp wrapper for C# + Simple, full-featured, lightweight, cross-platform CoolProp wrapper for C# $(NoWarn);1591;NU5129;CA2101;SYSLIB1054 - A simple, full-featured, lightweight, cross-platform CoolProp wrapper for C# + Simple, full-featured, lightweight, cross-platform CoolProp wrapper for C# SharpProp