This repository has been archived by the owner on Sep 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
85 lines (67 loc) · 2.45 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
from flask import Flask, render_template, jsonify, request
app = Flask(__name__)
app.config["TEMPLATES_AUTO_RELOAD"] = True
import json
import numpy as np
from beamlib import Forza, Carico, Momento, Trave, getDiagrams, normaleP, taglioP, momentoP
@app.route('/')
def main():
return render_template("home.html")
@app.route('/diag', methods=["POST"])
def diag():
azioni = json.loads(request.form["azioni"])
trave = json.loads(azioni["trave"])
forze = json.loads(azioni["forze"])
carichi = json.loads(azioni["carichi"])
momenti = json.loads(azioni["momenti"])
traveObj = Trave(0)
forzeList = []
carichiList = []
momentiList = []
for t in trave:
traveObj = Trave(t["len"])
for f in forze:
forzeList.append(Forza(f["val"], f["dist"], f["dir"]))
for q in carichi:
carichiList.append(Carico(q["qS"], q["qD"], q["dist"], q["len"]))
for m in momenti:
momentiList.append(Momento(m["val"], m["dist"]))
diagrammi = getDiagrams(traveObj, forzeList, carichiList, momentiList)
diagrammiResponse = {
"normale": diagrammi[0],
"taglio": diagrammi[1],
"momento": diagrammi[2]
}
return diagrammiResponse
@app.route('/pointValues', methods=["POST"])
def pointValues():
azioni = json.loads(request.form["azioni"])
trave = json.loads(azioni["trave"])
forze = json.loads(azioni["forze"])
carichi = json.loads(azioni["carichi"])
momenti = json.loads(azioni["momenti"])
pV = float(request.form["punto"]);
point = np.array([pV]);
Fv, Fh, Q, M, T = [], [], [], [], np.array([0])
for t in trave:
T[0] = np.array(t["len"])
for f in forze:
if f["dir"] == "V":
Fv.append(np.array([f["val"], f["dist"]]))
if f["dir"] == "H":
Fh.append(np.array([f["val"], f["dist"]]))
if f["dir"] != "V" and f["dir"] != "H":
Fv.append(np.array([f["val"]*np.sin(np.deg2rad(float(f["dir"]))), f["dist"]]))
Fh.append(np.array([f["val"]*np.cos(np.deg2rad(float(f["dir"]))), f["dist"]]))
for q in carichi:
Q.append(np.array([q["qS"], q["qD"], q["dist"], q["len"]]))
for m in momenti:
M.append(np.array([m["val"], m["dist"]]))
pointValues = {
"normale": float(normaleP(T, point, Fh)[0]),
"taglio": float(taglioP(T, point, Fv, Q)),
"momento": float(momentoP(T, point, Fv, Q, M))
}
return pointValues
if __name__ == "__main__":
app.run(threaded=True)