Published
Edited
May 11, 2020
1 fork
Insert cell
Insert cell
// Ein einfacher Dreigelenkbogen
system = {
// Knoten erstellen
let nodeA = new Node({name: "A", x: 0, z: 0, support: 'uw'});
let nodeB = new Node({name: "B", x: 2, z: 2, fz: 1});
let nodeC = new Node({name: "C", x: 4, z: 0, support: 'uw'});
// Stabelemente erstellen
let truss1 = new Truss({name: "1", nodes: [nodeA, nodeB], ea: 5});
let truss2 = new Truss({name: "2", nodes: [nodeB, nodeC], ea: 5});
// Liste aller Elemente im System
let elements = [truss1, truss2];
// System erstellen und lösen
let system = new System(elements);
system.solve();
// System zurückgeben
return system;
}
Insert cell
// Gleichungssystem ausgeben
showEquationSystem(system);
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell

Purpose-built for displays of data

Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Learn more