This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// CLI11: Version 2.3.2 | |
// Originally designed by Henry Schreiner | |
// https://github.com/CLIUtils/CLI11 | |
// | |
// This is a standalone header file generated by MakeSingleHeader.py in CLI11/scripts | |
// from: v2.3.2-22-g4a14b78 | |
// | |
// CLI11 2.3.2 Copyright (c) 2017-2023 University of Cincinnati, developed by Henry | |
// Schreiner under NSF AWARD 1414736. All rights reserved. | |
// |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
&wthdata | |
NumInHour=1 | |
InputFileType='CUSTOM' | |
InFormat='DELIMITED' | |
DataElements=year,month,day,hour,minute,datasource,Dry_Bulb_Temperature,Dew_Point_Temperature,Relative_Humidity,Atmospheric_Pressure,Extraterrestrial_Horizontal_Radiation,Extraterrestrial_Direct_Normal_Radiation,Horizontal_Infrared_Radiation_Intensity_from_Sky,Global_Horizontal_Radiation,Direct_Normal_Radiation,Diffuse_Horizontal_Radiation,Global_Horizontal_Illuminance,Direct_Normal_Illuminance,Diffuse_Horizontal_Illuminance,Zenith_Luminance,Wind_Direction,Wind_Speed,Total_Sky_Cover,Opaque_Sky_Cover,Visibility,Ceiling_Height,Present_Weather_Observation,Present_Weather_Codes,Precipitable_Water,Aerosol_Optical_Depth,Snow_Depth,Days_Since_Last_Snow,Albedo,Liquid_Precipitation_Depth,Liquid_Precipitation_Quantity | |
DataMissingValues=99999,99,99,99,99,,999,999,999,999999,9999,9999,9999,9999,9999,9999,999900,999900,999900,9999,999,999,99,99,9999,99999,9,999999999,999,0.999,999,99,999,999,99 | |
DataUnits='x','x','x','x','x','x','C','C','%','Pa','Wh/m2','Wh/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace std { | |
inline namespace __1 {} | |
} // namespace std | |
typedef long int ptrdiff_t; | |
typedef long unsigned int size_t; | |
typedef long double max_align_t; | |
namespace std { | |
typedef decltype(nullptr) nullptr_t; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Version, | |
22.2; !- Version Identifier | |
Timestep, | |
4; !- Number of Timesteps per Hour | |
LifeCycleCost:Parameters, | |
Life Cycle Cost Parameters, !- Name | |
EndOfYear, !- Discounting Convention |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Version, | |
22.1; !- Version Identifier | |
Timestep, | |
4; !- Number of Timesteps per Hour | |
LifeCycleCost:Parameters, | |
Life Cycle Cost Parameters, !- Name | |
EndOfYear, !- Discounting Convention |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ========================= | |
# eQuest | |
# ========================= | |
*.CTL | |
*.DSN | |
*.erp | |
*.lcr | |
*.lin | |
*.LOG |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
07:20:08.397 |I| AddVsVersionToLogs | :1 | JetBrains ReSharper 2021.2 Build 212.0.20210730.153713 | |
07:20:08.405 |I| AddVsVersionToLogs | :1 | Running under Visual Studio Community 2019 version 16.11.31613.86, Hive: 16.0_901e3441 | |
07:20:29.180 |W| VsReSharperMainMenuFixesSinceVs16| :1 | ReSharper menu is not found in the main VS menu. | |
07:20:32.142 |I| VsSolutionManager15 | :1 | VSSolutionManager::VsSolutionWrapperLifetimes: Solution instance created 55442836 | |
07:20:34.623 |W| VsWorkspaceListener | :1 | Could not get IVsSolutionWorkspaceService. System.InvalidOperationException. Could not query the service provider for the service ID {66685CD1-6BE5-4285-A1A4-1CEBC413F04F}. | |
07:20:34.810 |I| UE4AssetAdditionalFilesModuleFactory| :1 | UE4AssetAdditionalFilesModuleFactory is disabled | |
07:20:36.045 |W| HunspellEngine | :1 | Exception when trying to set H |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# this script records how much time it takes to run the model_annual_occupied_unmet_cooling_hours_detailed() method on a moderately sized model | |
# as suggested by Scott Horowitz, I tried toggling the boolean createIndexes argument in the SQL file constructor: | |
# sql_file = OpenStudio::SqlFile.new(OpenStudio::Path.new(sql_path), false) | |
# this method takes ~23.6 seconds to run (average of 23.6, 23.8, 23.5) with createIndexes set to false, | |
# and ~24.5 seconds to run (average of 24.1, 25.7, 23.6) with createIndexes set to true (default) | |
# there is some time spent requiring ruby gems and loading the model, but the main issue is the time it takes to do SQL calls | |
# each SQL call is ~.3-.4 seconds, which adds up over many zones |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <benchmark/benchmark.h> | |
#include <iostream> | |
#include <fstream> | |
// #include <fmt/format.h> | |
#include <vector> | |
#include <filesystem> | |
#include <boost/filesystem.hpp> | |
#include <boost/filesystem/fstream.hpp> |