A minor commit from my new laptop to verify that the commit and push commands are functioning correctly and properly connected to the Git repository.

This commit is contained in:
Saeed Rayegan 2024-11-05 16:40:06 -05:00
parent 54af91277c
commit 308c3a3e60
3 changed files with 6 additions and 6 deletions

View File

@ -2,7 +2,7 @@
<module type="PYTHON_MODULE" version="4"> <module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager"> <component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" /> <content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" /> <orderEntry type="jdk" jdkName="Hub (3)" jdkType="Python SDK" />
<orderEntry type="sourceFolder" forTests="false" /> <orderEntry type="sourceFolder" forTests="false" />
</component> </component>
</module> </module>

View File

@ -3,5 +3,5 @@
<component name="Black"> <component name="Black">
<option name="sdkName" value="C:\Users\sr283\miniconda3\envs\Hub" /> <option name="sdkName" value="C:\Users\sr283\miniconda3\envs\Hub" />
</component> </component>
<component name="ProjectRootManager" version="2" project-jdk-name="C:\Users\sr283\miniconda3\envs\Hub" project-jdk-type="Python SDK" /> <component name="ProjectRootManager" version="2" project-jdk-name="Hub (3)" project-jdk-type="Python SDK" />
</project> </project>

View File

@ -38,10 +38,10 @@ WeatherFactory('epw', city).enrich()
ExportsFactory('stl', city, output_path/'CityBEM_input_output').export() ExportsFactory('stl', city, output_path/'CityBEM_input_output').export()
ExportsFactory('sra', city, tmp_folder).export() #ExportsFactory('sra', city, tmp_folder).export()
sra_path = (tmp_folder / f'{city.name}_sra.xml').resolve() #sra_path = (tmp_folder / f'{city.name}_sra.xml').resolve()
subprocess.run(['sra', str(sra_path)]) #subprocess.run(['sra', str(sra_path)])
ResultFactory('sra', city, tmp_folder).enrich() #ResultFactory('sra', city, tmp_folder).enrich()
CityBEM_workflow(city) #run the city using a fast City-Building Energy Model, CityBEM CityBEM_workflow(city) #run the city using a fast City-Building Energy Model, CityBEM
#energy_plus_workflow(city) #energy_plus_workflow(city)
print ("test done") print ("test done")