From a372b417169508d8a9f4d373849e7f19edaad8ce Mon Sep 17 00:00:00 2001 From: Brandon Runnels Date: Mon, 11 Nov 2024 11:22:42 -0600 Subject: [PATCH] added png back to allen cahn (had been merged out apparently) --- src/Integrator/AllenCahn.H | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Integrator/AllenCahn.H b/src/Integrator/AllenCahn.H index 75cca4eba..375d9fc45 100644 --- a/src/Integrator/AllenCahn.H +++ b/src/Integrator/AllenCahn.H @@ -79,6 +79,7 @@ public: else if (type == "constant") value.ic = new IC::Constant(value.geom, pp, "alpha.ic.constant"); else if (type == "expression") value.ic = new IC::Expression(value.geom, pp, "alpha.ic.expression"); else if (type == "bmp") value.ic = new IC::BMP(value.geom, pp, "alpha.ic.bmp"); + else if (type == "png") value.ic = new IC::PNG(value.geom, pp, "alpha.ic.png"); else if (type == "random") value.ic = new IC::Random(value.geom, pp, "alpha.ic.random"); else if (type == "psread") value.ic = new IC::PSRead(value.geom, pp, "alpha.ic.psread"); else Util::Abort(INFO, "Invalid ic.type ", type);