From 7558a87a39073967e367fad2f9b81efea9721be9 Mon Sep 17 00:00:00 2001 From: amylu00 Date: Fri, 12 Apr 2024 21:06:27 -0700 Subject: [PATCH] fixing --- docs/src/plots/linear_HOM_J.jl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/src/plots/linear_HOM_J.jl b/docs/src/plots/linear_HOM_J.jl index 941157c9f2..997c272c2e 100644 --- a/docs/src/plots/linear_HOM_J.jl +++ b/docs/src/plots/linear_HOM_J.jl @@ -3,6 +3,7 @@ import CloudMicrophysics as CM import CloudMicrophysics.Parameters as CMP import CloudMicrophysics.HomIceNucleation as CMH +FT = Float32 const ip = CMP.IceNucleationParameters(FT) # Koop2000 parameterization @@ -29,7 +30,7 @@ MK.lines!( ax1, Koop_Δa, new_log10J, - label = "log10(J) = $(linear_coeffs[2]) Δa + $(linear_coeffs[1])" + label = "log10(J) = $(linear_coeffs[2]) Δa + $(linear_coeffs[1])", ) MK.lines!(ax1, Koop_Δa, log10KoopJ, label = "Koop 2000 Parameterization")