@@ -53,8 +53,8 @@ julia> round(Int, ustrip(u"m/s", velocity))
5353```
5454
5555# See Also
56- - [`shockcalc`](@ref): Comprehensive shock tube calculation
57- - [`driverpressure`](@ref): Calculate required driver pressure
56+ - [`shockcalc! `](@ref): Comprehensive shock tube calculation
57+ - [`driverpressure! `](@ref): Calculate required driver pressure
5858"""
5959function shockjump! (gas, Mach)
6060 α1 = (γ (gas) + 1 ) / (γ (gas) - 1 )
@@ -107,8 +107,8 @@ julia> round(typeof(1.0u"MPa"), pressure(driver_calc), digits=2)
107107```
108108
109109# See Also
110- - [`shockjump`](@ref): Calculate shock jump conditions
111- - [`shockcalc`](@ref): Comprehensive shock tube calculation
110+ - [`shockjump! `](@ref): Calculate shock jump conditions
111+ - [`shockcalc! `](@ref): Comprehensive shock tube calculation
112112"""
113113function driverpressure! (driver, driven, Ms)
114114 γ1, γ4 = γ (driven), γ (driver)
@@ -165,7 +165,7 @@ julia> round(typeof(1.0u"kPa"), pressure(result.shocked), digits=1)
165165```
166166
167167# See Also
168- - [`shockcalc`](@ref): Function that creates `ShockCalc` objects
168+ - [`shockcalc! `](@ref): Function that creates `ShockCalc` objects
169169"""
170170struct ShockCalc{DR<: PyThermo.Chemical ,DV<: PyThermo.Chemical ,U<: Unitful.Velocity }
171171 driver:: DR
@@ -235,7 +235,7 @@ julia> driver = Species("He")
235235Species(He, 298.1 K, 1.013e+05 Pa)
236236
237237julia> driven = Mixture(["He" => 0.95, "acetone" => 0.05], T = 18u"°C", P = 85u"kPa")
238- Mixture(95.0% helium , 5.00 % acetone, 291.1 K, 8.500e+04 Pa)
238+ Mixture(95% He , 5% acetone, 291.1 K, 8.500e+04 Pa)
239239
240240julia> result = shockcalc(driver, driven, 2.2);
241241
@@ -251,8 +251,8 @@ The calculation follows standard shock tube theory:
2512514. Returns complete state information for analysis
252252
253253# See Also
254- - [`shockjump`](@ref): Calculate shock jump conditions only
255- - [`driverpressure`](@ref): Calculate required driver pressure only
254+ - [`shockjump! `](@ref): Calculate shock jump conditions only
255+ - [`driverpressure! `](@ref): Calculate required driver pressure only
256256- [`ShockCalc`](@ref): Result container struct
257257"""
258258function shockcalc! (driver, driven, Ms)
@@ -302,7 +302,7 @@ julia> round(u"m/s", sol.u_star, digits=1)
302302```
303303
304304# See Also
305- - [`riemann_interface `](@ref): Function that creates `RiemannSolution ` objects
305+ - [`shockcalc! `](@ref): Function that creates `ShockCalc ` objects
306306"""
307307struct RiemannSolution{P<: Unitful.Pressure , V<: Unitful.Velocity , D<: Unitful.Density , T<: Unitful.Temperature }
308308 p_star:: P
@@ -409,7 +409,7 @@ julia> round(ustrip(u"m/s", sol.S_contact), digits=1)
409409
410410# See Also
411411- [`RiemannSolution`](@ref): Result container struct
412- - [`shockjump`](@ref): Calculate shock jump conditions
412+ - [`shockjump! `](@ref): Calculate shock jump conditions
413413"""
414414function riemann_interface (left:: Chemical , right:: Chemical , u_left= 0.0 , u_right= 0.0 )
415415 # Extract primitive variables
0 commit comments