Skip to content

Commit bae75f5

Browse files
committed
January 15, 2025 commit
1 parent f5dc647 commit bae75f5

File tree

171 files changed

+6588
-1548
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

171 files changed

+6588
-1548
lines changed

Dockerfile

-22
This file was deleted.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
This repo holds the framework for executing experiments comprised of multiple runs of the pces simulator. The heavy lifting is done in subdirectories simulator and simulator/sim-dir, with code that can be used to run multiple different pces applications. Other subdirectories in this repo hold model input files.
1+
This repo holds the framework for executing experiments comprised of multiple runs of the pces simulator. Each subdirectory holds a stand-alone application. See docs/pcesapps.md
22

docs/.DS_Store

8 KB
Binary file not shown.

docs/User-Extensions.md

+622
Large diffs are not rendered by default.

docs/User-Extensions.pdf

669 KB
Binary file not shown.

docs/images/.DS_Store

6 KB
Binary file not shown.

docs/images/BITS-beta-diagrams.pptx

73.7 KB
Binary file not shown.

docs/images/ClassMethods.png

109 KB
Loading

docs/images/EUDS-CmpPtn.png

220 KB
Loading

docs/images/EUDS-arch.png

86.8 KB
Loading

docs/images/app-folder.png

249 KB
Loading

docs/images/arrival-rate-graph.png

73.6 KB
Loading

docs/images/cp-start-data-lambda.png

29.9 KB
Loading

docs/images/embeddedCmpPtn.png

134 KB
Loading

docs/images/embeddedTopo.png

53.7 KB
Loading

docs/images/euds-results.csv.png

388 KB
Loading

docs/images/experiments-lambda.png

136 KB
Loading

docs/images/experiments.png

45.5 KB
Loading

docs/images/plot.png

13.4 KB
Loading

docs/images/queuing-results.csv.png

175 KB
Loading

docs/images/response-function.png

124 KB
Loading

docs/images/results.csv.png

176 KB
Loading

docs/images/sibyl-cp.png

59.8 KB
Loading

docs/images/sibylnet.png

81 KB
Loading

docs/images/xlsx-experiment.png

27.1 KB
Loading

docs/images/xlsx-finish.png

58.1 KB
Loading

docs/images/xlsx-srvRsp.png

50.2 KB
Loading

docs/images/xlsxDir.png

75.5 KB
Loading
49.5 KB
Loading

docs/pcesapps.md

+855
Large diffs are not rendered by default.

docs/pcesapps.pdf

1.7 MB
Binary file not shown.

docs/pptx-graphics/source-1.pptx

73.7 KB
Binary file not shown.

docs/pptx-graphics/source-2.pptx

374 KB
Binary file not shown.

embedded/.idea/workspace.xml

+115
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

embedded/Dockerfile-template

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# templated Dockfile transformed into useable Dockerfile
2+
# by doing a global subsitution on strings
3+
# $tag -- a container identifying tag
4+
# $appname -- name of the pces app being built here
5+
# $userargs -- empty if there are no user arguments, /tmp/extern/args/args-user otherwise
6+
#
7+
# Usage:
8+
9+
# docker build -t $tag
10+
# docker run -it --rm -v .:/tmp/extern $tag
11+
#
12+
FROM golang:1.23-bookworm
13+
14+
# Add whatever Debian packages you want here.
15+
RUN apt-get -y update && \
16+
apt-get install --no-install-recommends -y \
17+
vim-nox && \
18+
rm -rf /var/lib/apt/lists/*
19+
20+
# Build the pcesapps app
21+
WORKDIR /$appname
22+
COPY . .
23+
RUN $usermodules cd ./main && go mod tidy && go build -o /bin/sim main.go
24+
CMD sim $userargs -is /tmp/extern/args/args-sim

embedded/args/args-build

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#-xpenv xlsxPCES
2+
-xlsx embedded-model.xlsx
3+
-name embedded
4+
-simexec
5+
#-container pces/embedded

embedded/args/args-run

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
-templates ./templates
2+
-input ./input
3+
-output ./output
4+
-sim ./sim-dir
5+
-name embedded
6+
#-container pces/embedded
7+
#-extern ./
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
#-verbose
2+
#-json
13
-trace trace.yaml
2-
-stop 100.0
34
-rngseed 234545
45
-tunits msec
6+
#-stop 10000.0

0 commit comments

Comments
 (0)