From 3605561682b93c2dcc60700b4214fe507eec1c49 Mon Sep 17 00:00:00 2001
From: Ian Bell <ian.bell@nist.gov>
Date: Fri, 4 Nov 2022 12:32:45 -0400
Subject: [PATCH] And the missing methods

---
 include/teqp/json_builder.hpp | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/include/teqp/json_builder.hpp b/include/teqp/json_builder.hpp
index 2e26658..4d4cb90 100644
--- a/include/teqp/json_builder.hpp
+++ b/include/teqp/json_builder.hpp
@@ -95,6 +95,12 @@ namespace teqp {
         else if (kind == "EXP6_Kataoka1992"){
             return exp6::Kataoka1992(spec.at("alpha"));
         }
+        else if (kind == "AmmoniaWaterTillnerRoth"){
+            return AmmoniaWaterTillnerRoth();
+        }
+        else if (kind == "LJ126_TholJPCRD2016"){
+            return build_LJ126_TholJPCRD2016();
+        }
         else {
             throw teqpcException(30, "Unknown kind:" + kind);
         }
-- 
GitLab