├── .editorconfig ├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── build.yml │ ├── docs.yml │ ├── pr-checks.yml │ └── release.yml ├── .gitignore ├── AUTHORS.md ├── CHANGELOG.md ├── CITATION.cff ├── LICENSE ├── README.md ├── data ├── umat │ ├── umat-hooke-iso.f │ └── umat-hooke-transversaliso.f ├── units_consistent.csv ├── units_consistent_2.csv └── units_magnitude.csv ├── docs ├── _images │ ├── CollaborationWorkflow.jpg │ ├── CollaborationWorkflow_example.jpg │ ├── basic_workflow.jpg │ ├── fork.png │ ├── registration.jpg │ ├── workflow_1.png │ └── workflow_2.jpg ├── _static │ └── PLACEHOLDER ├── api │ ├── compas_fea2.job.rst │ ├── compas_fea2.model.rst │ ├── compas_fea2.problem.rst │ ├── compas_fea2.results.rst │ ├── compas_fea2.units.rst │ └── index.rst ├── backends │ └── index.rst ├── conf.py ├── development │ └── index.rst ├── index.rst └── userguide │ ├── __old │ └── gettingstarted.intro.rst │ ├── acknowledgements.rst │ ├── basics.analysis.rst │ ├── basics.data.rst │ ├── basics.model.rst │ ├── basics.overview.rst │ ├── basics.problem.rst │ ├── basics.results.rst │ ├── basics.visualisation.rst │ ├── gettingstarted.installation.rst │ ├── gettingstarted.intro.rst │ ├── gettingstarted.nextsteps.rst │ ├── gettingstarted.requirements.rst │ ├── index.rst │ ├── license.rst │ ├── units_consistent.csv │ ├── units_consistent_2.csv │ └── units_magnitude.csv ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt ├── scripts └── PLACEHOLDER ├── src └── compas_fea2 │ ├── UI │ ├── __init__.py │ └── viewer │ │ ├── __init__.py │ │ ├── drawer.py │ │ ├── primitives.py │ │ ├── scene.py │ │ └── viewer.py │ ├── __init__.py │ ├── base.py │ ├── cli.py │ ├── job │ ├── __init__.py │ └── input_file.py │ ├── model │ ├── __init__.py │ ├── bcs.py │ ├── connectors.py │ ├── constraints.py │ ├── elements.py │ ├── groups.py │ ├── ics.py │ ├── interactions.py │ ├── interfaces.py │ ├── materials │ │ ├── __init__.py │ │ ├── concrete.py │ │ ├── material.py │ │ ├── steel.py │ │ └── timber.py │ ├── model.py │ ├── nodes.py │ ├── parts.py │ ├── releases.py │ ├── sections.py │ └── shapes.py │ ├── problem │ ├── __init__.py │ ├── combinations.py │ ├── displacements.py │ ├── fields.py │ ├── loads.py │ ├── problem.py │ ├── steps │ │ ├── __init__.py │ │ ├── dynamic.py │ │ ├── perturbations.py │ │ ├── quasistatic.py │ │ ├── static.py │ │ └── step.py │ └── steps_combinations.py │ ├── results │ ├── __init__.py │ ├── database.py │ ├── fields.py │ ├── histories.py │ ├── modal.py │ └── results.py │ ├── units │ ├── __init__.py │ ├── constants_en.txt │ └── fea2_en.txt │ └── utilities │ ├── __init__.py │ └── _utils.py ├── tasks.py ├── temp └── PLACEHOLDER └── tests ├── test_bcs.py ├── test_connectors.py ├── test_constraints.py ├── test_elements.py ├── test_groups.py ├── test_ics.py ├── test_materials.py ├── test_model.py ├── test_nodes.py ├── test_parts.py ├── test_placeholder.py ├── test_releases.py ├── test_sections.py └── test_shapes.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/pr-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/.github/workflows/pr-checks.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/README.md -------------------------------------------------------------------------------- /data/umat/umat-hooke-iso.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/data/umat/umat-hooke-iso.f -------------------------------------------------------------------------------- /data/umat/umat-hooke-transversaliso.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/data/umat/umat-hooke-transversaliso.f -------------------------------------------------------------------------------- /data/units_consistent.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/data/units_consistent.csv -------------------------------------------------------------------------------- /data/units_consistent_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/data/units_consistent_2.csv -------------------------------------------------------------------------------- /data/units_magnitude.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/data/units_magnitude.csv -------------------------------------------------------------------------------- /docs/_images/CollaborationWorkflow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/_images/CollaborationWorkflow.jpg -------------------------------------------------------------------------------- /docs/_images/CollaborationWorkflow_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/_images/CollaborationWorkflow_example.jpg -------------------------------------------------------------------------------- /docs/_images/basic_workflow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/_images/basic_workflow.jpg -------------------------------------------------------------------------------- /docs/_images/fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/_images/fork.png -------------------------------------------------------------------------------- /docs/_images/registration.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/_images/registration.jpg -------------------------------------------------------------------------------- /docs/_images/workflow_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/_images/workflow_1.png -------------------------------------------------------------------------------- /docs/_images/workflow_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/_images/workflow_2.jpg -------------------------------------------------------------------------------- /docs/_static/PLACEHOLDER: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/api/compas_fea2.job.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/api/compas_fea2.job.rst -------------------------------------------------------------------------------- /docs/api/compas_fea2.model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/api/compas_fea2.model.rst -------------------------------------------------------------------------------- /docs/api/compas_fea2.problem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/api/compas_fea2.problem.rst -------------------------------------------------------------------------------- /docs/api/compas_fea2.results.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/api/compas_fea2.results.rst -------------------------------------------------------------------------------- /docs/api/compas_fea2.units.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/api/compas_fea2.units.rst -------------------------------------------------------------------------------- /docs/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/api/index.rst -------------------------------------------------------------------------------- /docs/backends/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/backends/index.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/development/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/development/index.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/userguide/__old/gettingstarted.intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/userguide/__old/gettingstarted.intro.rst -------------------------------------------------------------------------------- /docs/userguide/acknowledgements.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/userguide/acknowledgements.rst -------------------------------------------------------------------------------- /docs/userguide/basics.analysis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/userguide/basics.analysis.rst -------------------------------------------------------------------------------- /docs/userguide/basics.data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/userguide/basics.data.rst -------------------------------------------------------------------------------- /docs/userguide/basics.model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/userguide/basics.model.rst -------------------------------------------------------------------------------- /docs/userguide/basics.overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/userguide/basics.overview.rst -------------------------------------------------------------------------------- /docs/userguide/basics.problem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/userguide/basics.problem.rst -------------------------------------------------------------------------------- /docs/userguide/basics.results.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/userguide/basics.results.rst -------------------------------------------------------------------------------- /docs/userguide/basics.visualisation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/userguide/basics.visualisation.rst -------------------------------------------------------------------------------- /docs/userguide/gettingstarted.installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/userguide/gettingstarted.installation.rst -------------------------------------------------------------------------------- /docs/userguide/gettingstarted.intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/userguide/gettingstarted.intro.rst -------------------------------------------------------------------------------- /docs/userguide/gettingstarted.nextsteps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/userguide/gettingstarted.nextsteps.rst -------------------------------------------------------------------------------- /docs/userguide/gettingstarted.requirements.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/userguide/gettingstarted.requirements.rst -------------------------------------------------------------------------------- /docs/userguide/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/userguide/index.rst -------------------------------------------------------------------------------- /docs/userguide/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/userguide/license.rst -------------------------------------------------------------------------------- /docs/userguide/units_consistent.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/userguide/units_consistent.csv -------------------------------------------------------------------------------- /docs/userguide/units_consistent_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/userguide/units_consistent_2.csv -------------------------------------------------------------------------------- /docs/userguide/units_magnitude.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/docs/userguide/units_magnitude.csv -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/PLACEHOLDER: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas_fea2/UI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/UI/__init__.py -------------------------------------------------------------------------------- /src/compas_fea2/UI/viewer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/UI/viewer/__init__.py -------------------------------------------------------------------------------- /src/compas_fea2/UI/viewer/drawer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/UI/viewer/drawer.py -------------------------------------------------------------------------------- /src/compas_fea2/UI/viewer/primitives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/UI/viewer/primitives.py -------------------------------------------------------------------------------- /src/compas_fea2/UI/viewer/scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/UI/viewer/scene.py -------------------------------------------------------------------------------- /src/compas_fea2/UI/viewer/viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/UI/viewer/viewer.py -------------------------------------------------------------------------------- /src/compas_fea2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/__init__.py -------------------------------------------------------------------------------- /src/compas_fea2/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/base.py -------------------------------------------------------------------------------- /src/compas_fea2/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/cli.py -------------------------------------------------------------------------------- /src/compas_fea2/job/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/job/__init__.py -------------------------------------------------------------------------------- /src/compas_fea2/job/input_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/job/input_file.py -------------------------------------------------------------------------------- /src/compas_fea2/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/model/__init__.py -------------------------------------------------------------------------------- /src/compas_fea2/model/bcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/model/bcs.py -------------------------------------------------------------------------------- /src/compas_fea2/model/connectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/model/connectors.py -------------------------------------------------------------------------------- /src/compas_fea2/model/constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/model/constraints.py -------------------------------------------------------------------------------- /src/compas_fea2/model/elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/model/elements.py -------------------------------------------------------------------------------- /src/compas_fea2/model/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/model/groups.py -------------------------------------------------------------------------------- /src/compas_fea2/model/ics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/model/ics.py -------------------------------------------------------------------------------- /src/compas_fea2/model/interactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/model/interactions.py -------------------------------------------------------------------------------- /src/compas_fea2/model/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/model/interfaces.py -------------------------------------------------------------------------------- /src/compas_fea2/model/materials/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas_fea2/model/materials/concrete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/model/materials/concrete.py -------------------------------------------------------------------------------- /src/compas_fea2/model/materials/material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/model/materials/material.py -------------------------------------------------------------------------------- /src/compas_fea2/model/materials/steel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/model/materials/steel.py -------------------------------------------------------------------------------- /src/compas_fea2/model/materials/timber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/model/materials/timber.py -------------------------------------------------------------------------------- /src/compas_fea2/model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/model/model.py -------------------------------------------------------------------------------- /src/compas_fea2/model/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/model/nodes.py -------------------------------------------------------------------------------- /src/compas_fea2/model/parts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/model/parts.py -------------------------------------------------------------------------------- /src/compas_fea2/model/releases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/model/releases.py -------------------------------------------------------------------------------- /src/compas_fea2/model/sections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/model/sections.py -------------------------------------------------------------------------------- /src/compas_fea2/model/shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/model/shapes.py -------------------------------------------------------------------------------- /src/compas_fea2/problem/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/problem/__init__.py -------------------------------------------------------------------------------- /src/compas_fea2/problem/combinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/problem/combinations.py -------------------------------------------------------------------------------- /src/compas_fea2/problem/displacements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/problem/displacements.py -------------------------------------------------------------------------------- /src/compas_fea2/problem/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/problem/fields.py -------------------------------------------------------------------------------- /src/compas_fea2/problem/loads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/problem/loads.py -------------------------------------------------------------------------------- /src/compas_fea2/problem/problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/problem/problem.py -------------------------------------------------------------------------------- /src/compas_fea2/problem/steps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/problem/steps/__init__.py -------------------------------------------------------------------------------- /src/compas_fea2/problem/steps/dynamic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/problem/steps/dynamic.py -------------------------------------------------------------------------------- /src/compas_fea2/problem/steps/perturbations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/problem/steps/perturbations.py -------------------------------------------------------------------------------- /src/compas_fea2/problem/steps/quasistatic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/problem/steps/quasistatic.py -------------------------------------------------------------------------------- /src/compas_fea2/problem/steps/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/problem/steps/static.py -------------------------------------------------------------------------------- /src/compas_fea2/problem/steps/step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/problem/steps/step.py -------------------------------------------------------------------------------- /src/compas_fea2/problem/steps_combinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/problem/steps_combinations.py -------------------------------------------------------------------------------- /src/compas_fea2/results/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/results/__init__.py -------------------------------------------------------------------------------- /src/compas_fea2/results/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/results/database.py -------------------------------------------------------------------------------- /src/compas_fea2/results/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/results/fields.py -------------------------------------------------------------------------------- /src/compas_fea2/results/histories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/results/histories.py -------------------------------------------------------------------------------- /src/compas_fea2/results/modal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/results/modal.py -------------------------------------------------------------------------------- /src/compas_fea2/results/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/results/results.py -------------------------------------------------------------------------------- /src/compas_fea2/units/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/units/__init__.py -------------------------------------------------------------------------------- /src/compas_fea2/units/constants_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/units/constants_en.txt -------------------------------------------------------------------------------- /src/compas_fea2/units/fea2_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/units/fea2_en.txt -------------------------------------------------------------------------------- /src/compas_fea2/utilities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/compas_fea2/utilities/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/src/compas_fea2/utilities/_utils.py -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/tasks.py -------------------------------------------------------------------------------- /temp/PLACEHOLDER: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_bcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/tests/test_bcs.py -------------------------------------------------------------------------------- /tests/test_connectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/tests/test_connectors.py -------------------------------------------------------------------------------- /tests/test_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/tests/test_constraints.py -------------------------------------------------------------------------------- /tests/test_elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/tests/test_elements.py -------------------------------------------------------------------------------- /tests/test_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/tests/test_groups.py -------------------------------------------------------------------------------- /tests/test_ics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/tests/test_ics.py -------------------------------------------------------------------------------- /tests/test_materials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/tests/test_materials.py -------------------------------------------------------------------------------- /tests/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/tests/test_model.py -------------------------------------------------------------------------------- /tests/test_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/tests/test_nodes.py -------------------------------------------------------------------------------- /tests/test_parts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/tests/test_parts.py -------------------------------------------------------------------------------- /tests/test_placeholder.py: -------------------------------------------------------------------------------- 1 | def test_placeholder(): 2 | assert True 3 | -------------------------------------------------------------------------------- /tests/test_releases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/tests/test_releases.py -------------------------------------------------------------------------------- /tests/test_sections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/tests/test_sections.py -------------------------------------------------------------------------------- /tests/test_shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compas-dev/compas_fea2/HEAD/tests/test_shapes.py --------------------------------------------------------------------------------