Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,8 @@ fp-info-cache

# Exported BOM files
*.xml
*.csv
*.csv

# Remove python virtual env
.venv/
env/
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,10 @@
# 3D_Strain-G-UI

A 3D PyQT/PyQTGraph GUI for rocket fuselage bending analysis using strain gauges

## How To Run :rocket:

1. Run `setup.bat` to install dependencies, setup python local environment, etc..
2. Run `run.bat` to run program

![Image of UVIC Rocketry Logo](https://avatars.githubusercontent.com/u/22313299?s=200&v=4)
Binary file added requirements.txt
Binary file not shown.
2 changes: 2 additions & 0 deletions run.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
cd env\Scripts
START powershell.exe -NoExit ".\activate.ps1"; cd..; cd..;".\3D_Backend.py"
14 changes: 14 additions & 0 deletions setup.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
@echo off
:: Used to setup python virtual envrioment and install dependancies
Echo Installing virtualenv
python -m pip install --user virtualenv

Echo Creating Virtual Env
python -m venv env

Echo Activating Enviroment
cd env\Scripts
START powershell.exe ".\activate.ps1"; cd..; cd..;"pip install -r requirements.txt"

Echo Done
PAUSE