Commit e670db3c authored by Hines, Jesse's avatar Hines, Jesse Committed by Maiterth, Matthias
Browse files

Misc changes for the simulation server

parent bcbeb8a7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5,5 +5,5 @@ venv
*.npz
*.prof
simulation_results/
models/*.fmu
models/fmu-models
.shell-completion-cache
+8 −0
Original line number Diff line number Diff line
#Makefile
SHELL := /bin/bash

.PHONY: pip run docker_build docker_run
all: pip

@@ -19,3 +21,9 @@ docker_build:
docker_run:
	docker run --platform linux/amd64 -it $(IMAGE_NAME)

fetch-fmu-models:
	if [ ! -d ./models/fmu-models ]; then \
		git clone git@code.ornl.gov:exadigit/fmu-models.git ./models/fmu-models; \
	else \
		git -C ./models/fmu-models pull; \
	fi
+1 −1
Original line number Diff line number Diff line
@@ -90,7 +90,7 @@ cooling:
  wet_bulb_temp: 290.0
  zip_code: '37831'
  country_code: US
  fmu_path: "models/Simulator_olcf5_base.fmu"
  fmu_path: "../models/fmu-models/Frontier/Simulator_olcf5_base.fmu"
  fmu_column_mapping:
    T_sec_r_C: "Rack Return Temperature (°C)"
    T_sec_s_C: "Rack Supply Temperature (°C)"
+1 −1
Original line number Diff line number Diff line
@@ -63,7 +63,7 @@ cooling:
  wet_bulb_temp: 290.0
  zip_code: '37831'
  country_code: US
  fmu_path: "models/Simulator_olcf5_base.fmu"
  fmu_path: "../models/fmu-models/Frontier/Simulator_olcf5_base.fmu"
  fmu_column_mapping:
    T_sec_r_C: "Rack Return Temperature (°C)"
    T_sec_s_C: "Rack Supply Temperature (°C)"
+1 −1
Original line number Diff line number Diff line
@@ -56,7 +56,7 @@ cooling:
  wet_bulb_temp: 290.0
  zip_code: '94550'
  country_code: US
  fmu_path: "models/POWER9CSM/fmus/lassen.fmu"
  fmu_path: "../models/POWER9CSM/fmus/lassen.fmu"
  fmu_column_mapping:
    T_sec_r_C: "Rack Return Temperature (°C)"
    T_sec_s_C: "Rack Supply Temperature (°C)"
Loading