Exemplo n.º 1
0
        private void RunEnergyPlus(string inputJson, string folder, string cacheKey, bool compute)
        {
            var results = Compute.CreateEnergyPlus(
                inputJson,
                folder,
                compute
                );

            StringCache.setCache(cacheKey, results);
            StringCache.setCache(this.InstanceGuid.ToString(), "");
            if (compute)
            {
                StringCache.setCache(cacheKey + "create", "true");
            }
        }