sunyiyou commited on
Commit
c390c24
·
verified ·
1 Parent(s): b1faca1

Update data: 5 units

Browse files

- engineering/mold-flow/220089/software
- engineering/mpc_control_building_v1/base/input
- engineering/mpc_control_building_v1/base/software
- engineering/openroad_sky130_ibex_pnr_signoff/base/input
- engineering/openroad_sky130_ibex_pnr_signoff/base/software

tasks/engineering/mold-flow/220089/software/MDXStudio.lnk ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d579e48886270044493b03a57ded0278c77d10201e91b2a37f6f9bd36b8cf357
3
+ size 827
tasks/engineering/mpc_control_building_v1/base/software/README.md ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # EnergyPlus 22.1.0
2
+
3
+ EnergyPlus 22.1.0 is pre-installed on this VM. The binary is at:
4
+
5
+ /opt/energyplus-22.1.0/energyplus
6
+
7
+ Run with `-x` to invoke ExpandObjects automatically (the staged IDF uses
8
+ HVACTemplate objects). Typical invocation:
9
+
10
+ /opt/energyplus-22.1.0/energyplus -x \
11
+ -w ../input/Denver_current_TMY.epw \
12
+ -d <out_dir> \
13
+ ../input/SFH.idf
14
+
15
+ Python and `uv` are also pre-installed. Solver Python dependencies are
16
+ declared in `../input/runtime_env/pyproject.toml`.
tasks/engineering/openroad_sky130_ibex_pnr_signoff/base/software/prepare_workspace.sh ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+
4
+ TASK_ROOT="$(cd "$(dirname "$0")/.." && pwd)"
5
+ SRC="${TASK_ROOT}/input/starter_project"
6
+ DST="${TASK_ROOT}/output/workspace"
7
+
8
+ mkdir -p "${TASK_ROOT}/output"
9
+ rm -rf "${DST}"
10
+ cp -r "${SRC}" "${DST}"
11
+
12
+ echo "Prepared writable workspace at ${DST}"