continuousbeam


Namecontinuousbeam JSON
Version 2023.11.0 PyPI version JSON
download
home_page
SummaryStructural analysis of continuous beam using stiffness matrix method
upload_time2023-12-01 17:41:00
maintainer
docs_urlNone
author
requires_python>=3.8
licenseMIT License Copyright (c) 2022 khirwadkar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords continuous beam indeterminate beam stiffness matrix structural engineering structural analysis
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Introduction
This package acts as a Graphical User Interface (GUI) for another package with name *continuousbeam-backend*. Through the graphical interface of this package, the user inputs the data about the geometry of a continuous beam and the loads acting upon it. The *backend* package then performs the structural analysis of the given beam under the given loading and makes it available to our *frontend* package in numeric format. Our frontend package converts this numeric information to graphical format and displays various structural engineering diagrams, such as Reaction diagram, Shear Force diagram, Bending Moment diagram, and Deflection diagram.  


## Modules in the Package
There are four modules in the *continuousbeam* package. They are as described below.
- **contibeam_main**: This is the starting point of the program. It produces a GUI menu, through which the user can invoke the remaining three modules. 
- **beam_data**: This module collects the data about the geometry of the continuous beam from the user. The data includes such things as number of beam members, length, modulus of elasticity, moment of inertia of each beam member, and the type of each joint in the continuous beam.
- **load_data**: The user inputs the data about the loads acting on the continuous beam through this module. The types of loads accepted by this module are: joint loads (point loads and moments), and member loads (uniformly distributed loads and point loads). In this version of the package, only vertical point loads are considered; also the uniformly distributed loads that cover the full length of a member are allowed.
- **analysis**: This module takes the numeric results of analysis from the *backend* package. Then using those results, it produces and displays various diagrams needed by a structural engineer. It also stores the numeric data in a file with name '*structinsight_results.txt*'. The file is saved in the current directory, that is, the directory from where the program was invoked. 


# Installation and usage
Issue the following command to install the package on your system.
```
pip install continuousbeam
```

**Requirements**

```
"continuousbeam-backend >= 2023.11"
```
> **Notes** 
> - 1. The above requirements will be installed automatically while installing this package.
> - 2. Besides these, the package requires Python >= 3.8 and tkinter >= 8.6. (tkinter is the graphics library which is in-built in the Windows version of Python. On Linux and Mac platforms, some distributions of Python do not include it. In such cases, it will have to be installed separately.) 



### Using the package
This package can be executed directly from the command prompt by issuing the command in any of the following formats.
```
 $ python -m continuousbeam.contibeam_main

# or

 $ contibeam
```

The package can be imported also. It is expected that it would be imported by a larger GUI program which deals with different types of structures, such as trusses, frames, etc. The suitable format of import under these circumstances would be as follows. 
```
from continuousbeam import contibeam_main
```

After importing the 'contibeam_main' module, the importing program can display the GUI menu of the continuous beam by a statement as shown below.
```
contibeam_main.ContiBeamMenuWindow(parent_window_reference) 
```
The '*parent_window_reference*' in the above statement would be some tkinter window handle in the importing program.




            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "continuousbeam",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "continuous beam,indeterminate beam,stiffness matrix,structural engineering,structural analysis",
    "author": "",
    "author_email": "\"Sanjay G. Khirwadkar\" <khirwadkar@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/c6/ea/765001cf57c2d6a8029dfd88a43f8f6b6d316d82184281a765d7bd90ce2c/continuousbeam-2023.11.0.tar.gz",
    "platform": null,
    "description": "# Introduction\nThis package acts as a Graphical User Interface (GUI) for another package with name *continuousbeam-backend*. Through the graphical interface of this package, the user inputs the data about the geometry of a continuous beam and the loads acting upon it. The *backend* package then performs the structural analysis of the given beam under the given loading and makes it available to our *frontend* package in numeric format. Our frontend package converts this numeric information to graphical format and displays various structural engineering diagrams, such as Reaction diagram, Shear Force diagram, Bending Moment diagram, and Deflection diagram.  \n\n\n## Modules in the Package\nThere are four modules in the *continuousbeam* package. They are as described below.\n- **contibeam_main**: This is the starting point of the program. It produces a GUI menu, through which the user can invoke the remaining three modules. \n- **beam_data**: This module collects the data about the geometry of the continuous beam from the user. The data includes such things as number of beam members, length, modulus of elasticity, moment of inertia of each beam member, and the type of each joint in the continuous beam.\n- **load_data**: The user inputs the data about the loads acting on the continuous beam through this module. The types of loads accepted by this module are: joint loads (point loads and moments), and member loads (uniformly distributed loads and point loads). In this version of the package, only vertical point loads are considered; also the uniformly distributed loads that cover the full length of a member are allowed.\n- **analysis**: This module takes the numeric results of analysis from the *backend* package. Then using those results, it produces and displays various diagrams needed by a structural engineer. It also stores the numeric data in a file with name '*structinsight_results.txt*'. The file is saved in the current directory, that is, the directory from where the program was invoked. \n\n\n# Installation and usage\nIssue the following command to install the package on your system.\n```\npip install continuousbeam\n```\n\n**Requirements**\n\n```\n\"continuousbeam-backend >= 2023.11\"\n```\n> **Notes** \n> - 1. The above requirements will be installed automatically while installing this package.\n> - 2. Besides these, the package requires Python >= 3.8 and tkinter >= 8.6. (tkinter is the graphics library which is in-built in the Windows version of Python. On Linux and Mac platforms, some distributions of Python do not include it. In such cases, it will have to be installed separately.) \n\n\n\n### Using the package\nThis package can be executed directly from the command prompt by issuing the command in any of the following formats.\n```\n $ python -m continuousbeam.contibeam_main\n\n# or\n\n $ contibeam\n```\n\nThe package can be imported also. It is expected that it would be imported by a larger GUI program which deals with different types of structures, such as trusses, frames, etc. The suitable format of import under these circumstances would be as follows. \n```\nfrom continuousbeam import contibeam_main\n```\n\nAfter importing the 'contibeam_main' module, the importing program can display the GUI menu of the continuous beam by a statement as shown below.\n```\ncontibeam_main.ContiBeamMenuWindow(parent_window_reference) \n```\nThe '*parent_window_reference*' in the above statement would be some tkinter window handle in the importing program.\n\n\n\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2022 khirwadkar  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "Structural analysis of continuous beam using stiffness matrix method",
    "version": "2023.11.0",
    "project_urls": {
        "Homepage": "https://github.com/khirwadkar/StructInsight_in_Python"
    },
    "split_keywords": [
        "continuous beam",
        "indeterminate beam",
        "stiffness matrix",
        "structural engineering",
        "structural analysis"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e108c6fc5f9258fd4594ad56b1111dddbd0b47abd2e9a21452f585a62a8fa00f",
                "md5": "c80b950ec77ea1ea9c3ddcbc73042fb1",
                "sha256": "82949052b6b92a2598172d6f2ad013b29e3e1ab8e7600a717d36cf0e9fc3c6d6"
            },
            "downloads": -1,
            "filename": "continuousbeam-2023.11.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c80b950ec77ea1ea9c3ddcbc73042fb1",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 46586,
            "upload_time": "2023-12-01T17:40:58",
            "upload_time_iso_8601": "2023-12-01T17:40:58.251044Z",
            "url": "https://files.pythonhosted.org/packages/e1/08/c6fc5f9258fd4594ad56b1111dddbd0b47abd2e9a21452f585a62a8fa00f/continuousbeam-2023.11.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c6ea765001cf57c2d6a8029dfd88a43f8f6b6d316d82184281a765d7bd90ce2c",
                "md5": "86f35f76971d60ccc4dc174fe645237b",
                "sha256": "2a38e6f924a8b233dc8a876ae8ac40092f15e6e00c04052356c2166e19d87ac6"
            },
            "downloads": -1,
            "filename": "continuousbeam-2023.11.0.tar.gz",
            "has_sig": false,
            "md5_digest": "86f35f76971d60ccc4dc174fe645237b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 38622,
            "upload_time": "2023-12-01T17:41:00",
            "upload_time_iso_8601": "2023-12-01T17:41:00.987413Z",
            "url": "https://files.pythonhosted.org/packages/c6/ea/765001cf57c2d6a8029dfd88a43f8f6b6d316d82184281a765d7bd90ce2c/continuousbeam-2023.11.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-01 17:41:00",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "khirwadkar",
    "github_project": "StructInsight_in_Python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "continuousbeam"
}
        
Elapsed time: 0.14955s