Skip to content

Commit

Permalink
Initial import from 2015.10.00 release: svn r9831
Browse files Browse the repository at this point in the history
Added .gitattributes to make sure Windows CRLF is preserved for *.gPJ,
*.py and *.rms files

Filtered out file(s):
* ./test/system_test/automation/Moving Bed/GhostMouse-Setup.exe
  This file is an executable and cannot be open sourced. A copy of
  it can be found at http://www.download25.com/ghostmouse-download.html
  • Loading branch information
vchendrix committed May 19, 2017
0 parents commit 25f571f
Show file tree
Hide file tree
Showing 15 changed files with 157,270 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Set behaviour for all files, in case developers don't have core.autocrlf set.
* text=auto

# Explicitly declare text files we want to always be normalized and converted to native line endings on checkout.
*.txt text

# Declare files that will always have CRLF line endings on checkout.
*.gPJ text eol=crlf
*.py text eol=crlf
*.rms text eol=crlf

44,052 changes: 44,052 additions & 0 deletions ACM/Dynamic/Example_flowrate/Moving_Bed_Dynamic_Example.acmf

Large diffs are not rendered by default.

44,052 changes: 44,052 additions & 0 deletions ACM/Dynamic/Moving_Bed_Dynamic.acmf

Large diffs are not rendered by default.

44,080 changes: 44,080 additions & 0 deletions ACM/Steady-State/Moving_Bed_SS.acmf

Large diffs are not rendered by default.

58 changes: 58 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# A simple makefile for creating the Moving Bed Reactor Model distribution
VERSION := 2015.10.00
PRODUCT := Moving Bed Reactor Model
PROD_SNAME := MBReactor
LICENSE := CCSI_TE_LICENSE_$(PROD_SNAME).txt
PKG_DIR := CCSI_$(PROD_SNAME)_$(VERSION)
PACKAGE := $(PKG_DIR).zip

# Where Jenkins should checkout ^/projects/common/trunk/
COMMON := .ccsi_common
LEGAL_DOCS := LEGAL \
CCSI_TE_LICENSE.txt

PAYLOAD := ACM \
gPROMS \
LEGAL \
$(LICENSE)

# Get just the top part (not dirname) of each entry so cp -r does the right thing
PAYLOAD_TOPS := $(sort $(foreach v,$(PAYLOAD),$(shell echo $v | cut -d'/' -f1)))
# And the payload with the PKG_DIR prepended
PKG_PAYLOAD := $(addprefix $(PKG_DIR)/, $(PAYLOAD))

# OS detection & changes
UNAME := $(shell uname)
ifeq ($(UNAME), Linux)
MD5BIN=md5sum
endif
ifeq ($(UNAME), Darwin)
MD5BIN=md5
endif
ifeq ($(UNAME), FreeBSD)
MD5BIN=md5
endif

.PHONY: all clean

all: $(PACKAGE)

$(PACKAGE): $(PAYLOAD)
@mkdir $(PKG_DIR)
@cp -r $(PAYLOAD_TOPS) $(PKG_DIR)
@zip -qrX $(PACKAGE) $(PKG_PAYLOAD)
@$(MD5BIN) $(PACKAGE)
@rm -rf $(PKG_DIR) $(LICENSE) $(LEGAL_DOCS)

$(LICENSE): CCSI_TE_LICENSE.txt
@sed "s/\[SOFTWARE NAME \& VERSION\]/$(PRODUCT) v.$(VERSION)/" < CCSI_TE_LICENSE.txt > $(LICENSE)

$(LEGAL_DOCS):
@if [ -d $(COMMON) ]; then \
cp $(COMMON)/$@ .; \
else \
svn -q export ^/projects/common/trunk/$@; \
fi

clean:
@rm -rf $(PACKAGE) $(PKG_DIR) $(LICENSE) $(LEGAL_DOCS)
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# mb_reactor
Moving Bed Reactor Model
7,765 changes: 7,765 additions & 0 deletions gPROMS/DYNAMIC/Example/MovingB_v1.32.gPJ

Large diffs are not rendered by default.

7,753 changes: 7,753 additions & 0 deletions gPROMS/DYNAMIC/MovingB_v1.32.gPJ

Large diffs are not rendered by default.

7,747 changes: 7,747 additions & 0 deletions gPROMS/Steady-state/MovingB_v1.32SS.gPJ

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions jenkins_description.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Moving Bed Reactor Model<br/>
<br/>
<table style="width:50%">
<tr>
<td>Product Team:</td>
<td>PT4</td>
</tr>
<tr>
<td>Developers:</td>
<td><a href="mailto:Ben Omell &lt;[email protected]&gt;">Ben Omell</a> &amp;
<a href="mailto:Debangsu Bhattacharyya &lt;[email protected]&gt;">Debangsu Bhattacharyya</a>
</td>
</tr>
<tr>
<td>Drupal:</td>
<td><a href="https://www.acceleratecarboncapture.org/product/mbreactor">Moving Bed Reactor Model</a></td>
</tr>
<tr>
<td>Jira:</td>
<td><a href="https://svn.acceleratecarboncapture.org/jira/browse/MBREACTR">MBREACTR</a></td>
</tr>
</table>
Binary file not shown.
Loading

0 comments on commit 25f571f

Please sign in to comment.