{ "cells": [ { "cell_type": "code", "execution_count": null, "id": "million-hotel", "metadata": {}, "outputs": [], "source": [ "%matplotlib widget" ] }, { "cell_type": "code", "execution_count": null, "id": "purple-japan", "metadata": {}, "outputs": [], "source": [ "from bmcs_cross_section.mkappa.mkappa import MKappa\n", "from bmcs_cross_section.cs_design import TShape, BarLayer, CrossSectionDesign\n", "from bmcs_cross_section.matmod import PWLConcreteMatMod, EC2ConcreteMatMod\n", "import numpy as np\n", "import sympy as sp\n", "sp.init_printing()" ] }, { "cell_type": "code", "execution_count": null, "id": "secondary-kruger", "metadata": {}, "outputs": [], "source": [ "mc = MKappa(name='moment-curvature', low_kappa=-0.000014, high_kappa=0.00003)" ] }, { "cell_type": "code", "execution_count": null, "id": "talented-catalog", "metadata": {}, "outputs": [], "source": [ "mc.matrix = 'piecewise linear'\n", "css = mc.cross_section_shape = 'T-shape'\n", "csl = mc.cross_section_layout\n", "bl1 = BarLayer(name='steel 1', z=10, ds=10, count=2 )\n", "bl2 = BarLayer(name='steel 2', z=30, ds=10, count=2 )\n", "csl.add_layer(bl1)\n", "csl.add_layer(bl2)\n", "#csl.update_observers()" ] }, { "cell_type": "code", "execution_count": null, "id": "informational-patrick", "metadata": {}, "outputs": [], "source": [ "mc.interact()" ] }, { "cell_type": "code", "execution_count": null, "id": "unauthorized-metallic", "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3" } }, "nbformat": 4, "nbformat_minor": 5 }