├── .git-blame-ignore-revs ├── .github ├── dependabot.yaml └── workflows │ ├── ISSUE_TEMPLATE.md │ ├── black.yml │ ├── clang-format-check.yml │ ├── deploy_conda_package.yml │ └── unit_tests.yml ├── .gitignore ├── LICENSE.txt ├── Makefile ├── Makefile.in.info ├── README.md ├── TACS_Common.mk ├── _config.yml ├── conda ├── build.sh ├── conda_build_config.yaml └── meta.yaml ├── docs ├── Makefile ├── README └── source │ ├── _static │ └── custom.css │ ├── _templates │ └── page.html │ ├── caps2tacs │ ├── caps2tacs.rst │ ├── images │ │ ├── c2tacs1.png │ │ ├── c2tacs2.png │ │ ├── c2tacs3.png │ │ └── c2tacs4.png │ └── main.rst │ ├── conf.py │ ├── core │ ├── TACS.rst │ ├── constitutive.rst │ ├── core.rst │ ├── elements.rst │ └── functions.rst │ ├── examples │ ├── Example-Beam_Optimization.rst │ ├── Example-CRM_Optimization.rst │ ├── Example-Composite_Optimization.rst │ ├── Example-Plate.rst │ ├── Example-Transient_Battery.rst │ └── images │ │ ├── battery.gif │ │ ├── battery_pack.png │ │ ├── beam_plot.png │ │ ├── beam_prob.png │ │ ├── comp_opt_def.png │ │ ├── pf_opt.png │ │ ├── plate.png │ │ └── plate_pressure.png │ ├── index.rst │ ├── install.rst │ ├── interfaces.rst │ ├── mphys │ ├── builder.rst │ └── mphys.rst │ ├── postprocessing.rst │ ├── pytacs │ ├── adjacency.rst │ ├── base_solver.rst │ ├── buckling.rst │ ├── constraints.rst │ ├── continuation_solver.rst │ ├── dvcon.rst │ ├── modal.rst │ ├── newton_solver.rst │ ├── panel_length.rst │ ├── panel_width.rst │ ├── problems.rst │ ├── pytacs.rst │ ├── pytacs_module.rst │ ├── solvers.rst │ ├── static.rst │ ├── transient.rst │ └── volume.rst │ ├── theory │ ├── elements_theory.rst │ ├── shell_element.rst │ └── theory.rst │ └── troubleshooting.rst ├── examples ├── JD │ ├── JD.cpp │ ├── JD.h │ ├── Makefile │ └── cantilever_1.0_1.0_1.0.egads ├── Makefile ├── annulus │ ├── Makefile │ ├── analysis.py │ ├── annulus.cpp │ └── generate_bdf.py ├── battery │ ├── battery_pack.bdf │ ├── battery_runaway.py │ └── benchmark │ │ └── benchmark_battery_runaway.py ├── beam │ ├── I_beam.bdf │ ├── analysis.py │ ├── beam_model.bdf │ ├── beam_opt.bdf │ ├── beam_opt.py │ ├── benchmark │ │ └── benchmark_beam_opt.py │ └── ibeam_example.py ├── benchmark │ ├── Makefile │ └── benchmark.cpp ├── block_cyclic_mat │ ├── Makefile │ └── block_cyclic_test.cpp ├── buckling_plate │ ├── .gitignore │ ├── 1_run_analysis.py │ ├── 2_verification_cases.py │ └── _flat_plate_analysis.py ├── caps_wing │ ├── .gitignore │ ├── 10_blade_stiffened.py │ ├── 1_steady_analysis.py │ ├── 2_unsteady_analysis.py │ ├── 3_sizing_optimization.py │ ├── 4_sizing_and_shape.py │ ├── 5_steady_aflr_analysis.py │ ├── 6_animate_shape_vars.py │ ├── 7_multiproc_post_analysis.py │ ├── 8_make_exploded_views.py │ ├── 9_composite_mat_test.py │ ├── _blade_callback.py │ ├── archive │ │ ├── _parallel_test.py │ │ ├── gif_writer.py │ │ └── old_optimization.py │ ├── large_naca_wing.csm │ ├── results │ │ ├── gif_writer.py │ │ └── sizing_and_shape2 │ │ │ └── images │ │ │ └── gif_writer.py │ ├── simple_naca_wing.csm │ └── unsteady_analysis_test.py ├── crm │ ├── CRM_box_2nd.bdf │ ├── Makefile │ ├── analysis.py │ ├── benchmark │ │ ├── benchmark_analysis.py │ │ └── benchmark_crm.py │ ├── crm.cpp │ ├── crm.py │ ├── crm_frequency.cpp │ ├── crm_frequency.py │ └── crm_opt.py ├── cylinder │ ├── Makefile │ └── cylinder_verify.cpp ├── four_bar_mechanism │ ├── Makefile │ ├── four_bar_mechanism.cpp │ └── four_bar_mechanism.py ├── fuselage │ ├── aluminum_setup.py │ ├── analysis.py │ ├── benchmark │ │ └── benchmark_fuselage.py │ ├── composite_setup.py │ └── fuselage.bdf ├── gp_panel_buckling │ ├── 1_closed_form_axial_modes.py │ ├── 1_closed_form_shear_modes.py │ ├── 2_axialGP.py │ ├── 2_shearGP.py │ ├── 3_compare_CF.py │ ├── 3_compare_ML.py │ ├── 4_plot_ML.py │ └── check_axial_GP.py ├── grad_verify │ ├── Makefile │ └── grad_verify.cpp ├── mach_tutorial_wing │ ├── analysis.py │ ├── benchmark │ │ └── benchmark_mach_tutorial.py │ └── wingbox-L2-Order2.bdf ├── matrix_free │ ├── Makefile │ └── matrix_free.cpp ├── mg │ ├── Makefile │ └── mg.cpp ├── nonlinear_annulus │ ├── analysis.py │ ├── annulus.bdf │ ├── benchmark │ │ └── benchmark_annulus.py │ └── generate_annulus.py ├── nonlinear_cantilever │ ├── Beam.bdf │ ├── README.md │ ├── TipForceReferenceResults.py │ ├── ValidationPlots.py │ ├── analysis.py │ ├── analytic_displacement.py │ └── generate_beam_mesh.py ├── nonlinear_hemisphere │ ├── analysis.py │ ├── benchmark │ │ └── benchmark_hemisphere.py │ ├── generate_hemisphere.py │ └── hemisphere.bdf ├── nonlinear_skin_buckle │ ├── Box.bdf │ └── analysis.py ├── plate │ ├── Makefile │ ├── analysis.py │ ├── benchmark │ │ ├── benchmark_buckle.py │ │ ├── benchmark_disk.py │ │ └── benchmark_plate.py │ ├── disk.bdf │ ├── optimize_composite_plate.py │ ├── partitioned_plate.bdf │ ├── plate.bdf │ ├── plate.cpp │ ├── plate_buckle.py │ ├── rotating_disk.py │ └── ss_plate_buckle.bdf ├── plate_dynamics │ ├── Makefile │ ├── generate_plate.py │ ├── plate.cpp │ ├── plate_adjoint.py │ └── plate_dynamics.py ├── plot_JD_history │ ├── paper.mplstyle │ └── plot_JD_history.py ├── profile_elements │ ├── Makefile │ └── profile_elements.cpp ├── pyelement │ └── spring_mass_damper.py ├── rbe2 │ ├── analysis.py │ └── rbe_test.bdf ├── rbe3 │ ├── analysis.py │ ├── benchmark │ │ └── benchmark_rbe3.py │ └── rbe3.bdf ├── rigid │ ├── Makefile │ ├── double_pendulum.cpp │ ├── flexible_pendulum.cpp │ └── freefall.py ├── rotating_beam │ ├── Makefile │ ├── fanplot.py │ ├── generate_tacs_fan_data.sh │ └── rotating_beam.cpp ├── shell │ ├── Makefile │ ├── beam.cpp │ ├── cylinder.cpp │ ├── jacobian.cpp │ ├── plate.cpp │ └── shell_element.pyx ├── slot_3d │ ├── analysis.py │ ├── benchmark │ │ └── benchmark_slot.py │ └── slot.bdf ├── spectral │ ├── Makefile │ └── spectral.cpp ├── spring_mass │ ├── analysis.py │ ├── benchmark │ │ └── benchmark_spring_mass.py │ ├── harmonic_oscillation.py │ └── mass_spring.bdf ├── stiffened_panel │ ├── Makefile │ ├── create_skewed_plate.cpp │ ├── create_stiff_panel.cpp │ ├── skewed_plate.cpp │ └── stiffened_panel.cpp ├── stiffened_plate │ ├── CompareCrossSections.py │ ├── CrossSectionCombined.png │ ├── generate_plate.py │ ├── optimize_stiffened_plate.py │ ├── plate.bdf │ ├── plate_pinned_edges.bdf │ └── readme.md ├── tetrahedral │ ├── 5x5x5_cube.bdf │ ├── Makefile │ ├── fixed_motor.bdf │ └── tetrahedral.cpp ├── thermal_plate │ ├── add_bcs.py │ ├── analysis.py │ ├── benchmark │ │ └── benchmark_thermal_plate.py │ ├── circ-plate-dirichlet-bcs.bdf │ └── circ-plate-no-bcs.bdf ├── triangle │ ├── Makefile │ ├── triangle.cpp │ └── triangle.py └── tutorial │ ├── Makefile │ └── tutorial.cpp ├── extern ├── Makefile ├── f5clean ├── f5convert ├── f5totec │ ├── Makefile │ └── f5totec.cpp └── f5tovtk │ ├── Makefile │ ├── f5tovtk.cpp │ └── f5tovtk_element.cpp ├── lib └── README ├── pyproject.toml ├── roadmaps └── 2022roadmap.md ├── setup.cfg.info ├── setup.py ├── src ├── Makefile ├── TACSAssembler.cpp ├── TACSAssembler.h ├── TACSAssembler_thread.cpp ├── TACSAuxElements.cpp ├── TACSAuxElements.h ├── TACSBuckling.cpp ├── TACSBuckling.h ├── TACSContinuation.cpp ├── TACSContinuation.h ├── TACSCreator.cpp ├── TACSCreator.h ├── TACSIntegrator.cpp ├── TACSIntegrator.h ├── TACSMatrixFreeMat.cpp ├── TACSMatrixFreeMat.h ├── TACSMg.cpp ├── TACSMg.h ├── TACSObject.cpp ├── TACSObject.h ├── TACSSpectralIntegrator.cpp ├── TACSSpectralIntegrator.h ├── TacsComplexStep.h ├── TacsUtilities.cpp ├── TacsUtilities.h ├── bpmat │ ├── AMDInterface.cpp │ ├── AMDInterface.h │ ├── BCSCMatPivot.cpp │ ├── BCSCMatPivot.h │ ├── BCSRMat.cpp │ ├── BCSRMat.h │ ├── BCSRMatFact.cpp │ ├── BCSRMatFact1.cpp │ ├── BCSRMatFact2.cpp │ ├── BCSRMatFact3.cpp │ ├── BCSRMatFact4.cpp │ ├── BCSRMatFact5.cpp │ ├── BCSRMatFact6.cpp │ ├── BCSRMatFact8.cpp │ ├── BCSRMatImpl.h │ ├── BCSRMatMult.cpp │ ├── BCSRMatMult1.cpp │ ├── BCSRMatMult2.cpp │ ├── BCSRMatMult3.cpp │ ├── BCSRMatMult4.cpp │ ├── BCSRMatMult5.cpp │ ├── BCSRMatMult6.cpp │ ├── BCSRMatMult8.cpp │ ├── GSEP.cpp │ ├── GSEP.h │ ├── JacobiDavidson.cpp │ ├── JacobiDavidson.h │ ├── KSM.cpp │ ├── KSM.h │ ├── Makefile │ ├── TACSBVec.cpp │ ├── TACSBVec.h │ ├── TACSBVecDistribute.cpp │ ├── TACSBVecDistribute.h │ ├── TACSBVecInterp.cpp │ ├── TACSBVecInterp.h │ ├── TACSBlockCyclicMat.cpp │ ├── TACSBlockCyclicMat.h │ ├── TACSMatDistribute.cpp │ ├── TACSMatDistribute.h │ ├── TACSNodeMap.cpp │ ├── TACSNodeMap.h │ ├── TACSParallelMat.cpp │ ├── TACSParallelMat.h │ ├── TACSSchurMat.cpp │ ├── TACSSchurMat.h │ ├── TACSSerialPivotMat.cpp │ └── TACSSerialPivotMat.h ├── constitutive │ ├── EBStiffness.cpp │ ├── EBStiffness.h │ ├── Makefile │ ├── TACSBasicBeamConstitutive.cpp │ ├── TACSBasicBeamConstitutive.h │ ├── TACSBeamConstitutive.cpp │ ├── TACSBeamConstitutive.h │ ├── TACSBladeStiffenedShellConstitutive.cpp │ ├── TACSBladeStiffenedShellConstitutive.h │ ├── TACSCompositeShellConstitutive.cpp │ ├── TACSCompositeShellConstitutive.h │ ├── TACSConstitutive.cpp │ ├── TACSConstitutive.h │ ├── TACSConstitutiveVerification.cpp │ ├── TACSConstitutiveVerification.h │ ├── TACSDOFSpringConstitutive.cpp │ ├── TACSDOFSpringConstitutive.h │ ├── TACSGPBladeStiffenedShellConstitutive.cpp │ ├── TACSGPBladeStiffenedShellConstitutive.h │ ├── TACSGaussianProcessModel.cpp │ ├── TACSGaussianProcessModel.h │ ├── TACSGeneralMassConstitutive.cpp │ ├── TACSGeneralMassConstitutive.h │ ├── TACSGeneralSpringConstitutive.cpp │ ├── TACSGeneralSpringConstitutive.h │ ├── TACSIsoRectangleBeamConstitutive.cpp │ ├── TACSIsoRectangleBeamConstitutive.h │ ├── TACSIsoShellConstitutive.cpp │ ├── TACSIsoShellConstitutive.h │ ├── TACSIsoTubeBeamConstitutive.cpp │ ├── TACSIsoTubeBeamConstitutive.h │ ├── TACSLamParamShellConstitutive.cpp │ ├── TACSLamParamShellConstitutive.h │ ├── TACSMaterialProperties.cpp │ ├── TACSMaterialProperties.h │ ├── TACSPanelAnalysis.cpp │ ├── TACSPanelAnalysis.h │ ├── TACSPanelGPs.cpp │ ├── TACSPanelGPs.h │ ├── TACSPhaseChangeMaterialConstitutive.cpp │ ├── TACSPhaseChangeMaterialConstitutive.h │ ├── TACSPlaneStressConstitutive.cpp │ ├── TACSPlaneStressConstitutive.h │ ├── TACSPointMassConstitutive.cpp │ ├── TACSPointMassConstitutive.h │ ├── TACSShellConstitutive.cpp │ ├── TACSShellConstitutive.h │ ├── TACSSmearedCompositeShellConstitutive.cpp │ ├── TACSSmearedCompositeShellConstitutive.h │ ├── TACSSolidConstitutive.cpp │ ├── TACSSolidConstitutive.h │ ├── compFSDTStiffness.cpp │ └── compFSDTStiffness.h ├── elements │ ├── FElibrary.cpp │ ├── FElibrary.h │ ├── Makefile │ ├── TACSCentrifugalForce3D.cpp │ ├── TACSCentrifugalForce3D.h │ ├── TACSConvectiveTraction2D.cpp │ ├── TACSConvectiveTraction2D.h │ ├── TACSConvectiveTraction3D.cpp │ ├── TACSConvectiveTraction3D.h │ ├── TACSElement.cpp │ ├── TACSElement.h │ ├── TACSElement2D.cpp │ ├── TACSElement2D.h │ ├── TACSElement3D.cpp │ ├── TACSElement3D.h │ ├── TACSElementAlgebra.h │ ├── TACSElementModel.h │ ├── TACSElementQuaternion.h │ ├── TACSElementTypes.cpp │ ├── TACSElementTypes.h │ ├── TACSElementVerification.cpp │ ├── TACSElementVerification.h │ ├── TACSHeatConduction.cpp │ ├── TACSHeatConduction.h │ ├── TACSInertialForce2D.cpp │ ├── TACSInertialForce2D.h │ ├── TACSInertialForce3D.cpp │ ├── TACSInertialForce3D.h │ ├── TACSLinearElasticity.cpp │ ├── TACSLinearElasticity.h │ ├── TACSNeohookean.cpp │ ├── TACSNeohookean.h │ ├── TACSPCMHeatConduction.cpp │ ├── TACSPCMHeatConduction.h │ ├── TACSPlateModel.cpp │ ├── TACSPlateModel.h │ ├── TACSPressure2D.cpp │ ├── TACSPressure2D.h │ ├── TACSPressure3D.cpp │ ├── TACSPressure3D.h │ ├── TACSThermoelasticPlateModel.cpp │ ├── TACSThermoelasticPlateModel.h │ ├── TACSThermoelasticity.cpp │ ├── TACSThermoelasticity.h │ ├── TACSTraction2D.cpp │ ├── TACSTraction2D.h │ ├── TACSTraction3D.cpp │ ├── TACSTraction3D.h │ ├── a2d │ │ ├── a2d.h │ │ ├── a2dmatcore.h │ │ ├── a2dmatops.h │ │ ├── a2dobjs.h │ │ ├── a2dveccore.h │ │ └── a2dvecops.h │ ├── basis │ │ ├── Makefile │ │ ├── TACSBasisMacros.h │ │ ├── TACSBeamBasis.cpp │ │ ├── TACSBeamBasis.h │ │ ├── TACSBernsteinInterpolation.h │ │ ├── TACSElementBasis.cpp │ │ ├── TACSElementBasis.h │ │ ├── TACSElementMappedBasis.cpp │ │ ├── TACSElementMappedBasis.h │ │ ├── TACSGaussQuadrature.h │ │ ├── TACSHexaBasis.cpp │ │ ├── TACSHexaBasis.h │ │ ├── TACSHexaBernsteinBasis.cpp │ │ ├── TACSHexaBernsteinBasis.h │ │ ├── TACSLagrangeInterpolation.h │ │ ├── TACSLineBasis.cpp │ │ ├── TACSLineBasis.h │ │ ├── TACSMITCBasis.cpp │ │ ├── TACSMITCBasis.h │ │ ├── TACSMITCQuadBasis.cpp │ │ ├── TACSMITCQuadBasis.h │ │ ├── TACSMITCTriangleBasis.h │ │ ├── TACSQuadBasis.cpp │ │ ├── TACSQuadBasis.h │ │ ├── TACSQuadBernsteinBasis.cpp │ │ ├── TACSQuadBernsteinBasis.h │ │ ├── TACSTensorProductBasisImpl.cpp │ │ ├── TACSTensorProductBasisImpl.h │ │ ├── TACSTetrahedralBasis.cpp │ │ ├── TACSTetrahedralBasis.h │ │ ├── TACSTetrahedronQuadrature.h │ │ ├── TACSTriangleQuadrature.h │ │ ├── TACSTriangularBasis.cpp │ │ └── TACSTriangularBasis.h │ ├── direct │ │ ├── CoupledThermoSolid.h │ │ ├── LargeRotUtils.cpp │ │ ├── LargeRotUtils.h │ │ ├── MITCShell.h │ │ ├── PlaneStressCoupledThermoQuad.h │ │ ├── PlaneStressCoupledThermoTraction.h │ │ ├── PlaneStressQuad.h │ │ ├── PlaneStressTraction.h │ │ ├── PlaneStressTri6.cpp │ │ ├── PlaneStressTri6.h │ │ ├── PoissonElement.h │ │ ├── ShellUtils.cpp │ │ ├── ShellUtils.h │ │ ├── Solid.h │ │ ├── TACS2DCoupledThermoElement.h │ │ ├── TACS2DElement.h │ │ ├── TACS3DCoupledThermoElement.h │ │ ├── TACS3DCoupledThermoTraction.h │ │ ├── TACS3DElement.h │ │ ├── TACS3DTraction.h │ │ ├── TACSShell.cpp │ │ ├── TACSShell.h │ │ ├── TACSShellTraction.h │ │ ├── TensorToolbox.h │ │ └── ThermoElements.h │ ├── dynamics │ │ ├── MITC3.cpp │ │ ├── MITC3.h │ │ ├── MITC9.cpp │ │ ├── MITC9.h │ │ ├── Makefile │ │ ├── TACSGibbsVector.h │ │ ├── TACSKinematicConstraints.cpp │ │ ├── TACSKinematicConstraints.h │ │ ├── TACSRigidBody.cpp │ │ └── TACSRigidBody.h │ └── shell │ │ ├── Makefile │ │ ├── TACSBeamCentrifugalForce.h │ │ ├── TACSBeamElement.h │ │ ├── TACSBeamElementBasis.h │ │ ├── TACSBeamElementModel.h │ │ ├── TACSBeamElementQuadrature.h │ │ ├── TACSBeamElementTransform.h │ │ ├── TACSBeamInertialForce.h │ │ ├── TACSBeamTraction.h │ │ ├── TACSBeamUtilities.h │ │ ├── TACSDirector.h │ │ ├── TACSMassCentrifugalForce.cpp │ │ ├── TACSMassCentrifugalForce.h │ │ ├── TACSMassElement.cpp │ │ ├── TACSMassElement.h │ │ ├── TACSMassInertialForce.cpp │ │ ├── TACSMassInertialForce.h │ │ ├── TACSRBE2.cpp │ │ ├── TACSRBE2.h │ │ ├── TACSRBE3.cpp │ │ ├── TACSRBE3.h │ │ ├── TACSShellCentrifugalForce.h │ │ ├── TACSShellElement.h │ │ ├── TACSShellElementDefs.h │ │ ├── TACSShellElementModel.h │ │ ├── TACSShellElementQuadBasis.h │ │ ├── TACSShellElementQuadrature.h │ │ ├── TACSShellElementTransform.h │ │ ├── TACSShellElementTriBasis.h │ │ ├── TACSShellInertialForce.h │ │ ├── TACSShellInplaneElementModel.h │ │ ├── TACSShellPressure.h │ │ ├── TACSShellTraction.h │ │ ├── TACSShellUtilities.h │ │ ├── TACSSpringElement.cpp │ │ ├── TACSSpringElement.h │ │ ├── TACSSpringElementTransform.h │ │ └── TACSThermalShellElement.h ├── functions │ ├── DisplacementIntegral.cpp │ ├── DisplacementIntegral.h │ ├── KSMatTemperature.cpp │ ├── KSMatTemperature.h │ ├── Makefile │ ├── TACSAverageTemperature.cpp │ ├── TACSAverageTemperature.h │ ├── TACSCenterOfMass.cpp │ ├── TACSCenterOfMass.h │ ├── TACSCompliance.cpp │ ├── TACSCompliance.h │ ├── TACSEnclosedVolume.cpp │ ├── TACSEnclosedVolume.h │ ├── TACSFunction.cpp │ ├── TACSFunction.h │ ├── TACSHeatFlux.cpp │ ├── TACSHeatFlux.h │ ├── TACSInducedFailure.cpp │ ├── TACSInducedFailure.h │ ├── TACSKSDisplacement.cpp │ ├── TACSKSDisplacement.h │ ├── TACSKSFailure.cpp │ ├── TACSKSFailure.h │ ├── TACSKSTemperature.cpp │ ├── TACSKSTemperature.h │ ├── TACSMomentOfInertia.cpp │ ├── TACSMomentOfInertia.h │ ├── TACSStructuralMass.cpp │ └── TACSStructuralMass.h ├── io │ ├── Makefile │ ├── TACSFH5.cpp │ ├── TACSFH5.h │ ├── TACSFH5Loader.cpp │ ├── TACSFH5Loader.h │ ├── TACSMarchingCubes.cpp │ ├── TACSMarchingCubes.h │ ├── TACSMeshLoader.cpp │ ├── TACSMeshLoader.h │ ├── TACSToFH5.cpp │ └── TACSToFH5.h ├── tacslapack.h └── tacsmetis.h ├── tacs ├── TACS.pxd ├── TACS.pyx ├── TACSConstitutiveWrapper.h ├── TACSElementTemplates.h ├── TACSElementWrapper.h ├── __init__.pxd ├── __init__.py ├── caps2tacs │ ├── __init__.py │ ├── aflr_aim.py │ ├── analysis_function.py │ ├── constraints.py │ ├── egads_aim.py │ ├── gif_writer.py │ ├── loads.py │ ├── materials.py │ ├── proc_decorator.py │ ├── property.py │ ├── tacs_aim.py │ ├── tacs_model.py │ └── variables.py ├── constitutive.pxd ├── constitutive.pyx ├── constraints │ ├── __init__.py │ ├── adjacency.py │ ├── base.py │ ├── dv.py │ ├── panel_length.py │ ├── panel_width.py │ └── volume.py ├── cpp_headers │ ├── TACS.pxd │ ├── __init__.pxd │ ├── constitutive.pxd │ ├── elements.pxd │ └── functions.pxd ├── elements.pxd ├── elements.pyx ├── functions.pxd ├── functions.pyx ├── mphys │ ├── __init__.py │ ├── buckling.py │ ├── builder.py │ ├── constraints.py │ ├── coupling.py │ ├── dv.py │ ├── functions.py │ ├── mesh.py │ ├── postcoupling.py │ ├── precoupling.py │ ├── solver.py │ └── utils.py ├── mpi-compat.h ├── problems │ ├── __init__.py │ ├── base.py │ ├── buckling.py │ ├── modal.py │ ├── static.py │ └── transient.py ├── pymeshloader.py ├── pytacs.py ├── solvers │ ├── __init__.py │ ├── base.py │ ├── continuation.py │ └── newton.py ├── system.py └── utilities.py └── tests ├── constitutive_tests ├── test_basic_beam_constitutive.py ├── test_blade_stiffened_shell_constitutive.py ├── test_composite_shell_constitutive.py ├── test_dof_spring_constitutive.py ├── test_general_mass_constitutive.py ├── test_general_spring_constitutive.py ├── test_gp_blade_shell_constitutive.py ├── test_iso_rectangle_beam_constitutive.py ├── test_iso_shell_constitutive.py ├── test_iso_tube_beam_constitutive.py ├── test_pcm_constitutive.py ├── test_plane_stress_constitutive.py ├── test_point_mass_constitutive.py ├── test_smeared_composite_shell_constitutive.py └── test_solid_constitutive.py ├── element_tests ├── basis_tests │ ├── test_cubic_hexa_basis.py │ ├── test_cubic_quad_basis.py │ ├── test_linear_hexa_basis.py │ ├── test_linear_quad_basis.py │ ├── test_linear_tetrahedral_basis.py │ ├── test_linear_triangle_basis.py │ ├── test_quadratic_hexa_basis.py │ ├── test_quadratic_quad_basis.py │ ├── test_quadratic_tetrahedral_basis.py │ └── test_quadratic_triangle_basis.py ├── shell_tests │ ├── test_beam_centrifugal_force.py │ ├── test_beam_element.py │ ├── test_beam_inertial_force.py │ ├── test_beam_traction.py │ ├── test_mass_centrifugal_force.py │ ├── test_mass_element.py │ ├── test_mass_inertial_force.py │ ├── test_rbe2.py │ ├── test_rbe3.py │ ├── test_shell_centrifugal_force.py │ ├── test_shell_element.py │ ├── test_shell_inertial_force.py │ ├── test_shell_pressure.py │ ├── test_shell_traction.py │ └── test_spring_element.py ├── test_centrifugal_force_3d.py ├── test_element_2d.py ├── test_element_3d.py ├── test_heat_conduction_2d.py ├── test_heat_conduction_3d.py ├── test_inertial_force_2d.py ├── test_inertial_force_3d.py ├── test_linear_elasticity_2d.py ├── test_linear_elasticity_3d.py ├── test_linear_thermoelasticity_2d.py ├── test_linear_thermoelasticity_3d.py ├── test_pcm_heat_conduction_2d.py ├── test_pressure_2d.py ├── test_pressure_3d.py ├── test_traction_2d.py └── test_traction_3d.py └── integration_tests ├── input_files ├── 5x5x5_cube.bdf ├── I_beam.bdf ├── beam_model.bdf ├── beam_model_pbarl_Ibeam.bdf ├── beam_model_pbarl_rect.bdf ├── beam_model_pbarl_tube.bdf ├── beam_model_skewed.bdf ├── beam_tip_mass.bdf ├── circ-plate-dirichlet-bcs.bdf ├── closed_cylinder.bdf ├── comp_plate.bdf ├── cylinder.bdf ├── debug_plate.bdf ├── debug_plate_w_pt_mass.bdf ├── general_mass.bdf ├── hemisphere.bdf ├── partitioned_plate.bdf ├── plate.bdf ├── plate_combined_buckle.bdf ├── plate_shear_buckle.bdf ├── point_mass.bdf ├── quarterHemisphere.bdf ├── rbe_test.bdf ├── rigid_point_mass.bdf ├── simple_naca_wing.csm ├── simple_spring.bdf ├── slanted_plate.bdf ├── solid_beam.bdf ├── ss_plate.bdf ├── ss_plate_tri.bdf ├── test_beam.bdf ├── transient_beam.bdf ├── two_hexs.bdf ├── unit_cube.bdf └── unit_plate.bdf ├── openmdao_analysis_base_test.py ├── pytacs_analysis_base_test.py ├── static_analysis_base_test.py ├── test_I_beam_mixed.py ├── test_I_beam_tractions_pbarl.py ├── test_beam_bend_coupling.py ├── test_beam_point_mass.py ├── test_beam_write_bdf.py ├── test_caps_shape_derivatives.py ├── test_caps_thick_derivatives.py ├── test_elast_beam_quadtetra_element_3d.py ├── test_elast_centrifugal_quadtetra_element_3d.py ├── test_elast_linhexa_element_3d.py ├── test_elast_linhexa_inertial_3d.py ├── test_elast_linhexa_pressure_3d.py ├── test_elast_linquad_element_2d.py ├── test_elast_linquad_inertial_2d.py ├── test_elast_lintetra_element_3d.py ├── test_elast_quadtri_element_2d.py ├── test_general_mass_element.py ├── test_mphys_struct_buckling.py ├── test_mphys_struct_hemisphere_nonlinear.py ├── test_mphys_struct_plate.py ├── test_mphys_struct_point_mass_rbe.py ├── test_mphys_thermal_plate.py ├── test_pcm_element_2d.py ├── test_point_mass_element.py ├── test_rectangle_beam_offset.py ├── test_rectangle_beam_rotated.py ├── test_rectangle_beam_tractions.py ├── test_rectangle_beam_tractions_pbarl.py ├── test_rigid_body_mass.py ├── test_shell_annulus_from_pynastran.py ├── test_shell_beam_comp.py ├── test_shell_beam_grav.py ├── test_shell_beam_press.py ├── test_shell_beam_quad.py ├── test_shell_beam_tract.py ├── test_shell_beam_tri.py ├── test_shell_blade_stiffened_plate_quad.py ├── test_shell_comp_offset.py ├── test_shell_comp_smeared.py ├── test_shell_comp_unbalanced.py ├── test_shell_comp_write_bdf.py ├── test_shell_cube_volume.py ├── test_shell_cylinder_quad.py ├── test_shell_cylinder_volume.py ├── test_shell_hemisphere_mixed.py ├── test_shell_hemisphere_nonlinear.py ├── test_shell_plate_buckling_axial.py ├── test_shell_plate_buckling_combined.py ├── test_shell_plate_buckling_shear.py ├── test_shell_plate_modal.py ├── test_shell_plate_offset.py ├── test_shell_plate_partitioned.py ├── test_shell_plate_quad.py ├── test_shell_plate_rbe2.py ├── test_shell_plate_rbe2_pytacs.py ├── test_shell_plate_rbe3.py ├── test_shell_plate_rotated.py ├── test_shell_plate_zero_loads.py ├── test_shell_tri_buckling_axial.py ├── test_shell_write_bdf.py ├── test_simple_spring.py ├── test_thermal_element_2d.py ├── test_thermal_initial_conditions.py ├── test_thermoelast_linquad_element_2d.py ├── test_trans_beam.py ├── test_trans_beam_dirk.py ├── test_trans_elast_linhexa_element_3d.py ├── test_trans_elast_linquad_element_2d.py ├── test_trans_shell_beam_quad.py ├── test_tube_beam.py ├── test_tube_beam_pbarl.py └── transient_analysis_base_test.py /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/.github/workflows/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/black.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/.github/workflows/black.yml -------------------------------------------------------------------------------- /.github/workflows/clang-format-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/.github/workflows/clang-format-check.yml -------------------------------------------------------------------------------- /.github/workflows/deploy_conda_package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/.github/workflows/deploy_conda_package.yml -------------------------------------------------------------------------------- /.github/workflows/unit_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/.github/workflows/unit_tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.in.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/Makefile.in.info -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/README.md -------------------------------------------------------------------------------- /TACS_Common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/TACS_Common.mk -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/_config.yml -------------------------------------------------------------------------------- /conda/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/conda/build.sh -------------------------------------------------------------------------------- /conda/conda_build_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/conda/conda_build_config.yaml -------------------------------------------------------------------------------- /conda/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/conda/meta.yaml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/README -------------------------------------------------------------------------------- /docs/source/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/_static/custom.css -------------------------------------------------------------------------------- /docs/source/_templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/_templates/page.html -------------------------------------------------------------------------------- /docs/source/caps2tacs/caps2tacs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/caps2tacs/caps2tacs.rst -------------------------------------------------------------------------------- /docs/source/caps2tacs/images/c2tacs1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/caps2tacs/images/c2tacs1.png -------------------------------------------------------------------------------- /docs/source/caps2tacs/images/c2tacs2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/caps2tacs/images/c2tacs2.png -------------------------------------------------------------------------------- /docs/source/caps2tacs/images/c2tacs3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/caps2tacs/images/c2tacs3.png -------------------------------------------------------------------------------- /docs/source/caps2tacs/images/c2tacs4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/caps2tacs/images/c2tacs4.png -------------------------------------------------------------------------------- /docs/source/caps2tacs/main.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/caps2tacs/main.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/core/TACS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/core/TACS.rst -------------------------------------------------------------------------------- /docs/source/core/constitutive.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/core/constitutive.rst -------------------------------------------------------------------------------- /docs/source/core/core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/core/core.rst -------------------------------------------------------------------------------- /docs/source/core/elements.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/core/elements.rst -------------------------------------------------------------------------------- /docs/source/core/functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/core/functions.rst -------------------------------------------------------------------------------- /docs/source/examples/Example-Beam_Optimization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/examples/Example-Beam_Optimization.rst -------------------------------------------------------------------------------- /docs/source/examples/Example-CRM_Optimization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/examples/Example-CRM_Optimization.rst -------------------------------------------------------------------------------- /docs/source/examples/Example-Composite_Optimization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/examples/Example-Composite_Optimization.rst -------------------------------------------------------------------------------- /docs/source/examples/Example-Plate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/examples/Example-Plate.rst -------------------------------------------------------------------------------- /docs/source/examples/Example-Transient_Battery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/examples/Example-Transient_Battery.rst -------------------------------------------------------------------------------- /docs/source/examples/images/battery.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/examples/images/battery.gif -------------------------------------------------------------------------------- /docs/source/examples/images/battery_pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/examples/images/battery_pack.png -------------------------------------------------------------------------------- /docs/source/examples/images/beam_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/examples/images/beam_plot.png -------------------------------------------------------------------------------- /docs/source/examples/images/beam_prob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/examples/images/beam_prob.png -------------------------------------------------------------------------------- /docs/source/examples/images/comp_opt_def.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/examples/images/comp_opt_def.png -------------------------------------------------------------------------------- /docs/source/examples/images/pf_opt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/examples/images/pf_opt.png -------------------------------------------------------------------------------- /docs/source/examples/images/plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/examples/images/plate.png -------------------------------------------------------------------------------- /docs/source/examples/images/plate_pressure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/examples/images/plate_pressure.png -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/install.rst -------------------------------------------------------------------------------- /docs/source/interfaces.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/interfaces.rst -------------------------------------------------------------------------------- /docs/source/mphys/builder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/mphys/builder.rst -------------------------------------------------------------------------------- /docs/source/mphys/mphys.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/mphys/mphys.rst -------------------------------------------------------------------------------- /docs/source/postprocessing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/postprocessing.rst -------------------------------------------------------------------------------- /docs/source/pytacs/adjacency.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/pytacs/adjacency.rst -------------------------------------------------------------------------------- /docs/source/pytacs/base_solver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/pytacs/base_solver.rst -------------------------------------------------------------------------------- /docs/source/pytacs/buckling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/pytacs/buckling.rst -------------------------------------------------------------------------------- /docs/source/pytacs/constraints.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/pytacs/constraints.rst -------------------------------------------------------------------------------- /docs/source/pytacs/continuation_solver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/pytacs/continuation_solver.rst -------------------------------------------------------------------------------- /docs/source/pytacs/dvcon.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/pytacs/dvcon.rst -------------------------------------------------------------------------------- /docs/source/pytacs/modal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/pytacs/modal.rst -------------------------------------------------------------------------------- /docs/source/pytacs/newton_solver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/pytacs/newton_solver.rst -------------------------------------------------------------------------------- /docs/source/pytacs/panel_length.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/pytacs/panel_length.rst -------------------------------------------------------------------------------- /docs/source/pytacs/panel_width.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/pytacs/panel_width.rst -------------------------------------------------------------------------------- /docs/source/pytacs/problems.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/pytacs/problems.rst -------------------------------------------------------------------------------- /docs/source/pytacs/pytacs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/pytacs/pytacs.rst -------------------------------------------------------------------------------- /docs/source/pytacs/pytacs_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/pytacs/pytacs_module.rst -------------------------------------------------------------------------------- /docs/source/pytacs/solvers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/pytacs/solvers.rst -------------------------------------------------------------------------------- /docs/source/pytacs/static.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/pytacs/static.rst -------------------------------------------------------------------------------- /docs/source/pytacs/transient.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/pytacs/transient.rst -------------------------------------------------------------------------------- /docs/source/pytacs/volume.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/pytacs/volume.rst -------------------------------------------------------------------------------- /docs/source/theory/elements_theory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/theory/elements_theory.rst -------------------------------------------------------------------------------- /docs/source/theory/shell_element.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/theory/shell_element.rst -------------------------------------------------------------------------------- /docs/source/theory/theory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/theory/theory.rst -------------------------------------------------------------------------------- /docs/source/troubleshooting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/docs/source/troubleshooting.rst -------------------------------------------------------------------------------- /examples/JD/JD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/JD/JD.cpp -------------------------------------------------------------------------------- /examples/JD/JD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/JD/JD.h -------------------------------------------------------------------------------- /examples/JD/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/JD/Makefile -------------------------------------------------------------------------------- /examples/JD/cantilever_1.0_1.0_1.0.egads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/JD/cantilever_1.0_1.0_1.0.egads -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/annulus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/annulus/Makefile -------------------------------------------------------------------------------- /examples/annulus/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/annulus/analysis.py -------------------------------------------------------------------------------- /examples/annulus/annulus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/annulus/annulus.cpp -------------------------------------------------------------------------------- /examples/annulus/generate_bdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/annulus/generate_bdf.py -------------------------------------------------------------------------------- /examples/battery/battery_pack.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/battery/battery_pack.bdf -------------------------------------------------------------------------------- /examples/battery/battery_runaway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/battery/battery_runaway.py -------------------------------------------------------------------------------- /examples/battery/benchmark/benchmark_battery_runaway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/battery/benchmark/benchmark_battery_runaway.py -------------------------------------------------------------------------------- /examples/beam/I_beam.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/beam/I_beam.bdf -------------------------------------------------------------------------------- /examples/beam/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/beam/analysis.py -------------------------------------------------------------------------------- /examples/beam/beam_model.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/beam/beam_model.bdf -------------------------------------------------------------------------------- /examples/beam/beam_opt.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/beam/beam_opt.bdf -------------------------------------------------------------------------------- /examples/beam/beam_opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/beam/beam_opt.py -------------------------------------------------------------------------------- /examples/beam/benchmark/benchmark_beam_opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/beam/benchmark/benchmark_beam_opt.py -------------------------------------------------------------------------------- /examples/beam/ibeam_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/beam/ibeam_example.py -------------------------------------------------------------------------------- /examples/benchmark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/benchmark/Makefile -------------------------------------------------------------------------------- /examples/benchmark/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/benchmark/benchmark.cpp -------------------------------------------------------------------------------- /examples/block_cyclic_mat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/block_cyclic_mat/Makefile -------------------------------------------------------------------------------- /examples/block_cyclic_mat/block_cyclic_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/block_cyclic_mat/block_cyclic_test.cpp -------------------------------------------------------------------------------- /examples/buckling_plate/.gitignore: -------------------------------------------------------------------------------- 1 | *.bdf 2 | *.png 3 | *.csv 4 | -------------------------------------------------------------------------------- /examples/buckling_plate/1_run_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/buckling_plate/1_run_analysis.py -------------------------------------------------------------------------------- /examples/buckling_plate/2_verification_cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/buckling_plate/2_verification_cases.py -------------------------------------------------------------------------------- /examples/buckling_plate/_flat_plate_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/buckling_plate/_flat_plate_analysis.py -------------------------------------------------------------------------------- /examples/caps_wing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/caps_wing/.gitignore -------------------------------------------------------------------------------- /examples/caps_wing/10_blade_stiffened.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/caps_wing/10_blade_stiffened.py -------------------------------------------------------------------------------- /examples/caps_wing/1_steady_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/caps_wing/1_steady_analysis.py -------------------------------------------------------------------------------- /examples/caps_wing/2_unsteady_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/caps_wing/2_unsteady_analysis.py -------------------------------------------------------------------------------- /examples/caps_wing/3_sizing_optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/caps_wing/3_sizing_optimization.py -------------------------------------------------------------------------------- /examples/caps_wing/4_sizing_and_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/caps_wing/4_sizing_and_shape.py -------------------------------------------------------------------------------- /examples/caps_wing/5_steady_aflr_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/caps_wing/5_steady_aflr_analysis.py -------------------------------------------------------------------------------- /examples/caps_wing/6_animate_shape_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/caps_wing/6_animate_shape_vars.py -------------------------------------------------------------------------------- /examples/caps_wing/7_multiproc_post_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/caps_wing/7_multiproc_post_analysis.py -------------------------------------------------------------------------------- /examples/caps_wing/8_make_exploded_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/caps_wing/8_make_exploded_views.py -------------------------------------------------------------------------------- /examples/caps_wing/9_composite_mat_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/caps_wing/9_composite_mat_test.py -------------------------------------------------------------------------------- /examples/caps_wing/_blade_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/caps_wing/_blade_callback.py -------------------------------------------------------------------------------- /examples/caps_wing/archive/_parallel_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/caps_wing/archive/_parallel_test.py -------------------------------------------------------------------------------- /examples/caps_wing/archive/gif_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/caps_wing/archive/gif_writer.py -------------------------------------------------------------------------------- /examples/caps_wing/archive/old_optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/caps_wing/archive/old_optimization.py -------------------------------------------------------------------------------- /examples/caps_wing/large_naca_wing.csm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/caps_wing/large_naca_wing.csm -------------------------------------------------------------------------------- /examples/caps_wing/results/gif_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/caps_wing/results/gif_writer.py -------------------------------------------------------------------------------- /examples/caps_wing/results/sizing_and_shape2/images/gif_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/caps_wing/results/sizing_and_shape2/images/gif_writer.py -------------------------------------------------------------------------------- /examples/caps_wing/simple_naca_wing.csm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/caps_wing/simple_naca_wing.csm -------------------------------------------------------------------------------- /examples/caps_wing/unsteady_analysis_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/caps_wing/unsteady_analysis_test.py -------------------------------------------------------------------------------- /examples/crm/CRM_box_2nd.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/crm/CRM_box_2nd.bdf -------------------------------------------------------------------------------- /examples/crm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/crm/Makefile -------------------------------------------------------------------------------- /examples/crm/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/crm/analysis.py -------------------------------------------------------------------------------- /examples/crm/benchmark/benchmark_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/crm/benchmark/benchmark_analysis.py -------------------------------------------------------------------------------- /examples/crm/benchmark/benchmark_crm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/crm/benchmark/benchmark_crm.py -------------------------------------------------------------------------------- /examples/crm/crm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/crm/crm.cpp -------------------------------------------------------------------------------- /examples/crm/crm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/crm/crm.py -------------------------------------------------------------------------------- /examples/crm/crm_frequency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/crm/crm_frequency.cpp -------------------------------------------------------------------------------- /examples/crm/crm_frequency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/crm/crm_frequency.py -------------------------------------------------------------------------------- /examples/crm/crm_opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/crm/crm_opt.py -------------------------------------------------------------------------------- /examples/cylinder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/cylinder/Makefile -------------------------------------------------------------------------------- /examples/cylinder/cylinder_verify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/cylinder/cylinder_verify.cpp -------------------------------------------------------------------------------- /examples/four_bar_mechanism/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/four_bar_mechanism/Makefile -------------------------------------------------------------------------------- /examples/four_bar_mechanism/four_bar_mechanism.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/four_bar_mechanism/four_bar_mechanism.cpp -------------------------------------------------------------------------------- /examples/four_bar_mechanism/four_bar_mechanism.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/four_bar_mechanism/four_bar_mechanism.py -------------------------------------------------------------------------------- /examples/fuselage/aluminum_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/fuselage/aluminum_setup.py -------------------------------------------------------------------------------- /examples/fuselage/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/fuselage/analysis.py -------------------------------------------------------------------------------- /examples/fuselage/benchmark/benchmark_fuselage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/fuselage/benchmark/benchmark_fuselage.py -------------------------------------------------------------------------------- /examples/fuselage/composite_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/fuselage/composite_setup.py -------------------------------------------------------------------------------- /examples/fuselage/fuselage.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/fuselage/fuselage.bdf -------------------------------------------------------------------------------- /examples/gp_panel_buckling/1_closed_form_axial_modes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/gp_panel_buckling/1_closed_form_axial_modes.py -------------------------------------------------------------------------------- /examples/gp_panel_buckling/1_closed_form_shear_modes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/gp_panel_buckling/1_closed_form_shear_modes.py -------------------------------------------------------------------------------- /examples/gp_panel_buckling/2_axialGP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/gp_panel_buckling/2_axialGP.py -------------------------------------------------------------------------------- /examples/gp_panel_buckling/2_shearGP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/gp_panel_buckling/2_shearGP.py -------------------------------------------------------------------------------- /examples/gp_panel_buckling/3_compare_CF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/gp_panel_buckling/3_compare_CF.py -------------------------------------------------------------------------------- /examples/gp_panel_buckling/3_compare_ML.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/gp_panel_buckling/3_compare_ML.py -------------------------------------------------------------------------------- /examples/gp_panel_buckling/4_plot_ML.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/gp_panel_buckling/4_plot_ML.py -------------------------------------------------------------------------------- /examples/gp_panel_buckling/check_axial_GP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/gp_panel_buckling/check_axial_GP.py -------------------------------------------------------------------------------- /examples/grad_verify/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/grad_verify/Makefile -------------------------------------------------------------------------------- /examples/grad_verify/grad_verify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/grad_verify/grad_verify.cpp -------------------------------------------------------------------------------- /examples/mach_tutorial_wing/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/mach_tutorial_wing/analysis.py -------------------------------------------------------------------------------- /examples/mach_tutorial_wing/benchmark/benchmark_mach_tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/mach_tutorial_wing/benchmark/benchmark_mach_tutorial.py -------------------------------------------------------------------------------- /examples/mach_tutorial_wing/wingbox-L2-Order2.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/mach_tutorial_wing/wingbox-L2-Order2.bdf -------------------------------------------------------------------------------- /examples/matrix_free/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/matrix_free/Makefile -------------------------------------------------------------------------------- /examples/matrix_free/matrix_free.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/matrix_free/matrix_free.cpp -------------------------------------------------------------------------------- /examples/mg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/mg/Makefile -------------------------------------------------------------------------------- /examples/mg/mg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/mg/mg.cpp -------------------------------------------------------------------------------- /examples/nonlinear_annulus/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/nonlinear_annulus/analysis.py -------------------------------------------------------------------------------- /examples/nonlinear_annulus/annulus.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/nonlinear_annulus/annulus.bdf -------------------------------------------------------------------------------- /examples/nonlinear_annulus/benchmark/benchmark_annulus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/nonlinear_annulus/benchmark/benchmark_annulus.py -------------------------------------------------------------------------------- /examples/nonlinear_annulus/generate_annulus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/nonlinear_annulus/generate_annulus.py -------------------------------------------------------------------------------- /examples/nonlinear_cantilever/Beam.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/nonlinear_cantilever/Beam.bdf -------------------------------------------------------------------------------- /examples/nonlinear_cantilever/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/nonlinear_cantilever/README.md -------------------------------------------------------------------------------- /examples/nonlinear_cantilever/TipForceReferenceResults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/nonlinear_cantilever/TipForceReferenceResults.py -------------------------------------------------------------------------------- /examples/nonlinear_cantilever/ValidationPlots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/nonlinear_cantilever/ValidationPlots.py -------------------------------------------------------------------------------- /examples/nonlinear_cantilever/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/nonlinear_cantilever/analysis.py -------------------------------------------------------------------------------- /examples/nonlinear_cantilever/analytic_displacement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/nonlinear_cantilever/analytic_displacement.py -------------------------------------------------------------------------------- /examples/nonlinear_cantilever/generate_beam_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/nonlinear_cantilever/generate_beam_mesh.py -------------------------------------------------------------------------------- /examples/nonlinear_hemisphere/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/nonlinear_hemisphere/analysis.py -------------------------------------------------------------------------------- /examples/nonlinear_hemisphere/benchmark/benchmark_hemisphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/nonlinear_hemisphere/benchmark/benchmark_hemisphere.py -------------------------------------------------------------------------------- /examples/nonlinear_hemisphere/generate_hemisphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/nonlinear_hemisphere/generate_hemisphere.py -------------------------------------------------------------------------------- /examples/nonlinear_hemisphere/hemisphere.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/nonlinear_hemisphere/hemisphere.bdf -------------------------------------------------------------------------------- /examples/nonlinear_skin_buckle/Box.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/nonlinear_skin_buckle/Box.bdf -------------------------------------------------------------------------------- /examples/nonlinear_skin_buckle/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/nonlinear_skin_buckle/analysis.py -------------------------------------------------------------------------------- /examples/plate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/plate/Makefile -------------------------------------------------------------------------------- /examples/plate/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/plate/analysis.py -------------------------------------------------------------------------------- /examples/plate/benchmark/benchmark_buckle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/plate/benchmark/benchmark_buckle.py -------------------------------------------------------------------------------- /examples/plate/benchmark/benchmark_disk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/plate/benchmark/benchmark_disk.py -------------------------------------------------------------------------------- /examples/plate/benchmark/benchmark_plate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/plate/benchmark/benchmark_plate.py -------------------------------------------------------------------------------- /examples/plate/disk.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/plate/disk.bdf -------------------------------------------------------------------------------- /examples/plate/optimize_composite_plate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/plate/optimize_composite_plate.py -------------------------------------------------------------------------------- /examples/plate/partitioned_plate.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/plate/partitioned_plate.bdf -------------------------------------------------------------------------------- /examples/plate/plate.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/plate/plate.bdf -------------------------------------------------------------------------------- /examples/plate/plate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/plate/plate.cpp -------------------------------------------------------------------------------- /examples/plate/plate_buckle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/plate/plate_buckle.py -------------------------------------------------------------------------------- /examples/plate/rotating_disk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/plate/rotating_disk.py -------------------------------------------------------------------------------- /examples/plate/ss_plate_buckle.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/plate/ss_plate_buckle.bdf -------------------------------------------------------------------------------- /examples/plate_dynamics/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/plate_dynamics/Makefile -------------------------------------------------------------------------------- /examples/plate_dynamics/generate_plate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/plate_dynamics/generate_plate.py -------------------------------------------------------------------------------- /examples/plate_dynamics/plate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/plate_dynamics/plate.cpp -------------------------------------------------------------------------------- /examples/plate_dynamics/plate_adjoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/plate_dynamics/plate_adjoint.py -------------------------------------------------------------------------------- /examples/plate_dynamics/plate_dynamics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/plate_dynamics/plate_dynamics.py -------------------------------------------------------------------------------- /examples/plot_JD_history/paper.mplstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/plot_JD_history/paper.mplstyle -------------------------------------------------------------------------------- /examples/plot_JD_history/plot_JD_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/plot_JD_history/plot_JD_history.py -------------------------------------------------------------------------------- /examples/profile_elements/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/profile_elements/Makefile -------------------------------------------------------------------------------- /examples/profile_elements/profile_elements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/profile_elements/profile_elements.cpp -------------------------------------------------------------------------------- /examples/pyelement/spring_mass_damper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/pyelement/spring_mass_damper.py -------------------------------------------------------------------------------- /examples/rbe2/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/rbe2/analysis.py -------------------------------------------------------------------------------- /examples/rbe2/rbe_test.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/rbe2/rbe_test.bdf -------------------------------------------------------------------------------- /examples/rbe3/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/rbe3/analysis.py -------------------------------------------------------------------------------- /examples/rbe3/benchmark/benchmark_rbe3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/rbe3/benchmark/benchmark_rbe3.py -------------------------------------------------------------------------------- /examples/rbe3/rbe3.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/rbe3/rbe3.bdf -------------------------------------------------------------------------------- /examples/rigid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/rigid/Makefile -------------------------------------------------------------------------------- /examples/rigid/double_pendulum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/rigid/double_pendulum.cpp -------------------------------------------------------------------------------- /examples/rigid/flexible_pendulum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/rigid/flexible_pendulum.cpp -------------------------------------------------------------------------------- /examples/rigid/freefall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/rigid/freefall.py -------------------------------------------------------------------------------- /examples/rotating_beam/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/rotating_beam/Makefile -------------------------------------------------------------------------------- /examples/rotating_beam/fanplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/rotating_beam/fanplot.py -------------------------------------------------------------------------------- /examples/rotating_beam/generate_tacs_fan_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/rotating_beam/generate_tacs_fan_data.sh -------------------------------------------------------------------------------- /examples/rotating_beam/rotating_beam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/rotating_beam/rotating_beam.cpp -------------------------------------------------------------------------------- /examples/shell/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/shell/Makefile -------------------------------------------------------------------------------- /examples/shell/beam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/shell/beam.cpp -------------------------------------------------------------------------------- /examples/shell/cylinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/shell/cylinder.cpp -------------------------------------------------------------------------------- /examples/shell/jacobian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/shell/jacobian.cpp -------------------------------------------------------------------------------- /examples/shell/plate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/shell/plate.cpp -------------------------------------------------------------------------------- /examples/shell/shell_element.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/shell/shell_element.pyx -------------------------------------------------------------------------------- /examples/slot_3d/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/slot_3d/analysis.py -------------------------------------------------------------------------------- /examples/slot_3d/benchmark/benchmark_slot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/slot_3d/benchmark/benchmark_slot.py -------------------------------------------------------------------------------- /examples/slot_3d/slot.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/slot_3d/slot.bdf -------------------------------------------------------------------------------- /examples/spectral/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/spectral/Makefile -------------------------------------------------------------------------------- /examples/spectral/spectral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/spectral/spectral.cpp -------------------------------------------------------------------------------- /examples/spring_mass/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/spring_mass/analysis.py -------------------------------------------------------------------------------- /examples/spring_mass/benchmark/benchmark_spring_mass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/spring_mass/benchmark/benchmark_spring_mass.py -------------------------------------------------------------------------------- /examples/spring_mass/harmonic_oscillation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/spring_mass/harmonic_oscillation.py -------------------------------------------------------------------------------- /examples/spring_mass/mass_spring.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/spring_mass/mass_spring.bdf -------------------------------------------------------------------------------- /examples/stiffened_panel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/stiffened_panel/Makefile -------------------------------------------------------------------------------- /examples/stiffened_panel/create_skewed_plate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/stiffened_panel/create_skewed_plate.cpp -------------------------------------------------------------------------------- /examples/stiffened_panel/create_stiff_panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/stiffened_panel/create_stiff_panel.cpp -------------------------------------------------------------------------------- /examples/stiffened_panel/skewed_plate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/stiffened_panel/skewed_plate.cpp -------------------------------------------------------------------------------- /examples/stiffened_panel/stiffened_panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/stiffened_panel/stiffened_panel.cpp -------------------------------------------------------------------------------- /examples/stiffened_plate/CompareCrossSections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/stiffened_plate/CompareCrossSections.py -------------------------------------------------------------------------------- /examples/stiffened_plate/CrossSectionCombined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/stiffened_plate/CrossSectionCombined.png -------------------------------------------------------------------------------- /examples/stiffened_plate/generate_plate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/stiffened_plate/generate_plate.py -------------------------------------------------------------------------------- /examples/stiffened_plate/optimize_stiffened_plate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/stiffened_plate/optimize_stiffened_plate.py -------------------------------------------------------------------------------- /examples/stiffened_plate/plate.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/stiffened_plate/plate.bdf -------------------------------------------------------------------------------- /examples/stiffened_plate/plate_pinned_edges.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/stiffened_plate/plate_pinned_edges.bdf -------------------------------------------------------------------------------- /examples/stiffened_plate/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/stiffened_plate/readme.md -------------------------------------------------------------------------------- /examples/tetrahedral/5x5x5_cube.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/tetrahedral/5x5x5_cube.bdf -------------------------------------------------------------------------------- /examples/tetrahedral/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/tetrahedral/Makefile -------------------------------------------------------------------------------- /examples/tetrahedral/fixed_motor.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/tetrahedral/fixed_motor.bdf -------------------------------------------------------------------------------- /examples/tetrahedral/tetrahedral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/tetrahedral/tetrahedral.cpp -------------------------------------------------------------------------------- /examples/thermal_plate/add_bcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/thermal_plate/add_bcs.py -------------------------------------------------------------------------------- /examples/thermal_plate/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/thermal_plate/analysis.py -------------------------------------------------------------------------------- /examples/thermal_plate/benchmark/benchmark_thermal_plate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/thermal_plate/benchmark/benchmark_thermal_plate.py -------------------------------------------------------------------------------- /examples/thermal_plate/circ-plate-dirichlet-bcs.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/thermal_plate/circ-plate-dirichlet-bcs.bdf -------------------------------------------------------------------------------- /examples/thermal_plate/circ-plate-no-bcs.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/thermal_plate/circ-plate-no-bcs.bdf -------------------------------------------------------------------------------- /examples/triangle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/triangle/Makefile -------------------------------------------------------------------------------- /examples/triangle/triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/triangle/triangle.cpp -------------------------------------------------------------------------------- /examples/triangle/triangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/triangle/triangle.py -------------------------------------------------------------------------------- /examples/tutorial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/tutorial/Makefile -------------------------------------------------------------------------------- /examples/tutorial/tutorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/examples/tutorial/tutorial.cpp -------------------------------------------------------------------------------- /extern/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/extern/Makefile -------------------------------------------------------------------------------- /extern/f5clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/extern/f5clean -------------------------------------------------------------------------------- /extern/f5convert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/extern/f5convert -------------------------------------------------------------------------------- /extern/f5totec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/extern/f5totec/Makefile -------------------------------------------------------------------------------- /extern/f5totec/f5totec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/extern/f5totec/f5totec.cpp -------------------------------------------------------------------------------- /extern/f5tovtk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/extern/f5tovtk/Makefile -------------------------------------------------------------------------------- /extern/f5tovtk/f5tovtk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/extern/f5tovtk/f5tovtk.cpp -------------------------------------------------------------------------------- /extern/f5tovtk/f5tovtk_element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/extern/f5tovtk/f5tovtk_element.cpp -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/lib/README -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/pyproject.toml -------------------------------------------------------------------------------- /roadmaps/2022roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/roadmaps/2022roadmap.md -------------------------------------------------------------------------------- /setup.cfg.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/setup.cfg.info -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/setup.py -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/TACSAssembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/TACSAssembler.cpp -------------------------------------------------------------------------------- /src/TACSAssembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/TACSAssembler.h -------------------------------------------------------------------------------- /src/TACSAssembler_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/TACSAssembler_thread.cpp -------------------------------------------------------------------------------- /src/TACSAuxElements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/TACSAuxElements.cpp -------------------------------------------------------------------------------- /src/TACSAuxElements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/TACSAuxElements.h -------------------------------------------------------------------------------- /src/TACSBuckling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/TACSBuckling.cpp -------------------------------------------------------------------------------- /src/TACSBuckling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/TACSBuckling.h -------------------------------------------------------------------------------- /src/TACSContinuation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/TACSContinuation.cpp -------------------------------------------------------------------------------- /src/TACSContinuation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/TACSContinuation.h -------------------------------------------------------------------------------- /src/TACSCreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/TACSCreator.cpp -------------------------------------------------------------------------------- /src/TACSCreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/TACSCreator.h -------------------------------------------------------------------------------- /src/TACSIntegrator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/TACSIntegrator.cpp -------------------------------------------------------------------------------- /src/TACSIntegrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/TACSIntegrator.h -------------------------------------------------------------------------------- /src/TACSMatrixFreeMat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/TACSMatrixFreeMat.cpp -------------------------------------------------------------------------------- /src/TACSMatrixFreeMat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/TACSMatrixFreeMat.h -------------------------------------------------------------------------------- /src/TACSMg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/TACSMg.cpp -------------------------------------------------------------------------------- /src/TACSMg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/TACSMg.h -------------------------------------------------------------------------------- /src/TACSObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/TACSObject.cpp -------------------------------------------------------------------------------- /src/TACSObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/TACSObject.h -------------------------------------------------------------------------------- /src/TACSSpectralIntegrator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/TACSSpectralIntegrator.cpp -------------------------------------------------------------------------------- /src/TACSSpectralIntegrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/TACSSpectralIntegrator.h -------------------------------------------------------------------------------- /src/TacsComplexStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/TacsComplexStep.h -------------------------------------------------------------------------------- /src/TacsUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/TacsUtilities.cpp -------------------------------------------------------------------------------- /src/TacsUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/TacsUtilities.h -------------------------------------------------------------------------------- /src/bpmat/AMDInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/AMDInterface.cpp -------------------------------------------------------------------------------- /src/bpmat/AMDInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/AMDInterface.h -------------------------------------------------------------------------------- /src/bpmat/BCSCMatPivot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/BCSCMatPivot.cpp -------------------------------------------------------------------------------- /src/bpmat/BCSCMatPivot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/BCSCMatPivot.h -------------------------------------------------------------------------------- /src/bpmat/BCSRMat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/BCSRMat.cpp -------------------------------------------------------------------------------- /src/bpmat/BCSRMat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/BCSRMat.h -------------------------------------------------------------------------------- /src/bpmat/BCSRMatFact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/BCSRMatFact.cpp -------------------------------------------------------------------------------- /src/bpmat/BCSRMatFact1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/BCSRMatFact1.cpp -------------------------------------------------------------------------------- /src/bpmat/BCSRMatFact2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/BCSRMatFact2.cpp -------------------------------------------------------------------------------- /src/bpmat/BCSRMatFact3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/BCSRMatFact3.cpp -------------------------------------------------------------------------------- /src/bpmat/BCSRMatFact4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/BCSRMatFact4.cpp -------------------------------------------------------------------------------- /src/bpmat/BCSRMatFact5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/BCSRMatFact5.cpp -------------------------------------------------------------------------------- /src/bpmat/BCSRMatFact6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/BCSRMatFact6.cpp -------------------------------------------------------------------------------- /src/bpmat/BCSRMatFact8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/BCSRMatFact8.cpp -------------------------------------------------------------------------------- /src/bpmat/BCSRMatImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/BCSRMatImpl.h -------------------------------------------------------------------------------- /src/bpmat/BCSRMatMult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/BCSRMatMult.cpp -------------------------------------------------------------------------------- /src/bpmat/BCSRMatMult1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/BCSRMatMult1.cpp -------------------------------------------------------------------------------- /src/bpmat/BCSRMatMult2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/BCSRMatMult2.cpp -------------------------------------------------------------------------------- /src/bpmat/BCSRMatMult3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/BCSRMatMult3.cpp -------------------------------------------------------------------------------- /src/bpmat/BCSRMatMult4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/BCSRMatMult4.cpp -------------------------------------------------------------------------------- /src/bpmat/BCSRMatMult5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/BCSRMatMult5.cpp -------------------------------------------------------------------------------- /src/bpmat/BCSRMatMult6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/BCSRMatMult6.cpp -------------------------------------------------------------------------------- /src/bpmat/BCSRMatMult8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/BCSRMatMult8.cpp -------------------------------------------------------------------------------- /src/bpmat/GSEP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/GSEP.cpp -------------------------------------------------------------------------------- /src/bpmat/GSEP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/GSEP.h -------------------------------------------------------------------------------- /src/bpmat/JacobiDavidson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/JacobiDavidson.cpp -------------------------------------------------------------------------------- /src/bpmat/JacobiDavidson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/JacobiDavidson.h -------------------------------------------------------------------------------- /src/bpmat/KSM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/KSM.cpp -------------------------------------------------------------------------------- /src/bpmat/KSM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/KSM.h -------------------------------------------------------------------------------- /src/bpmat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/Makefile -------------------------------------------------------------------------------- /src/bpmat/TACSBVec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/TACSBVec.cpp -------------------------------------------------------------------------------- /src/bpmat/TACSBVec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/TACSBVec.h -------------------------------------------------------------------------------- /src/bpmat/TACSBVecDistribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/TACSBVecDistribute.cpp -------------------------------------------------------------------------------- /src/bpmat/TACSBVecDistribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/TACSBVecDistribute.h -------------------------------------------------------------------------------- /src/bpmat/TACSBVecInterp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/TACSBVecInterp.cpp -------------------------------------------------------------------------------- /src/bpmat/TACSBVecInterp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/TACSBVecInterp.h -------------------------------------------------------------------------------- /src/bpmat/TACSBlockCyclicMat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/TACSBlockCyclicMat.cpp -------------------------------------------------------------------------------- /src/bpmat/TACSBlockCyclicMat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/TACSBlockCyclicMat.h -------------------------------------------------------------------------------- /src/bpmat/TACSMatDistribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/TACSMatDistribute.cpp -------------------------------------------------------------------------------- /src/bpmat/TACSMatDistribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/TACSMatDistribute.h -------------------------------------------------------------------------------- /src/bpmat/TACSNodeMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/TACSNodeMap.cpp -------------------------------------------------------------------------------- /src/bpmat/TACSNodeMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/TACSNodeMap.h -------------------------------------------------------------------------------- /src/bpmat/TACSParallelMat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/TACSParallelMat.cpp -------------------------------------------------------------------------------- /src/bpmat/TACSParallelMat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/TACSParallelMat.h -------------------------------------------------------------------------------- /src/bpmat/TACSSchurMat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/TACSSchurMat.cpp -------------------------------------------------------------------------------- /src/bpmat/TACSSchurMat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/TACSSchurMat.h -------------------------------------------------------------------------------- /src/bpmat/TACSSerialPivotMat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/TACSSerialPivotMat.cpp -------------------------------------------------------------------------------- /src/bpmat/TACSSerialPivotMat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/bpmat/TACSSerialPivotMat.h -------------------------------------------------------------------------------- /src/constitutive/EBStiffness.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/EBStiffness.cpp -------------------------------------------------------------------------------- /src/constitutive/EBStiffness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/EBStiffness.h -------------------------------------------------------------------------------- /src/constitutive/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/Makefile -------------------------------------------------------------------------------- /src/constitutive/TACSBasicBeamConstitutive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSBasicBeamConstitutive.cpp -------------------------------------------------------------------------------- /src/constitutive/TACSBasicBeamConstitutive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSBasicBeamConstitutive.h -------------------------------------------------------------------------------- /src/constitutive/TACSBeamConstitutive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSBeamConstitutive.cpp -------------------------------------------------------------------------------- /src/constitutive/TACSBeamConstitutive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSBeamConstitutive.h -------------------------------------------------------------------------------- /src/constitutive/TACSBladeStiffenedShellConstitutive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSBladeStiffenedShellConstitutive.cpp -------------------------------------------------------------------------------- /src/constitutive/TACSBladeStiffenedShellConstitutive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSBladeStiffenedShellConstitutive.h -------------------------------------------------------------------------------- /src/constitutive/TACSCompositeShellConstitutive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSCompositeShellConstitutive.cpp -------------------------------------------------------------------------------- /src/constitutive/TACSCompositeShellConstitutive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSCompositeShellConstitutive.h -------------------------------------------------------------------------------- /src/constitutive/TACSConstitutive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSConstitutive.cpp -------------------------------------------------------------------------------- /src/constitutive/TACSConstitutive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSConstitutive.h -------------------------------------------------------------------------------- /src/constitutive/TACSConstitutiveVerification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSConstitutiveVerification.cpp -------------------------------------------------------------------------------- /src/constitutive/TACSConstitutiveVerification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSConstitutiveVerification.h -------------------------------------------------------------------------------- /src/constitutive/TACSDOFSpringConstitutive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSDOFSpringConstitutive.cpp -------------------------------------------------------------------------------- /src/constitutive/TACSDOFSpringConstitutive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSDOFSpringConstitutive.h -------------------------------------------------------------------------------- /src/constitutive/TACSGPBladeStiffenedShellConstitutive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSGPBladeStiffenedShellConstitutive.cpp -------------------------------------------------------------------------------- /src/constitutive/TACSGPBladeStiffenedShellConstitutive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSGPBladeStiffenedShellConstitutive.h -------------------------------------------------------------------------------- /src/constitutive/TACSGaussianProcessModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSGaussianProcessModel.cpp -------------------------------------------------------------------------------- /src/constitutive/TACSGaussianProcessModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSGaussianProcessModel.h -------------------------------------------------------------------------------- /src/constitutive/TACSGeneralMassConstitutive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSGeneralMassConstitutive.cpp -------------------------------------------------------------------------------- /src/constitutive/TACSGeneralMassConstitutive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSGeneralMassConstitutive.h -------------------------------------------------------------------------------- /src/constitutive/TACSGeneralSpringConstitutive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSGeneralSpringConstitutive.cpp -------------------------------------------------------------------------------- /src/constitutive/TACSGeneralSpringConstitutive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSGeneralSpringConstitutive.h -------------------------------------------------------------------------------- /src/constitutive/TACSIsoRectangleBeamConstitutive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSIsoRectangleBeamConstitutive.cpp -------------------------------------------------------------------------------- /src/constitutive/TACSIsoRectangleBeamConstitutive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSIsoRectangleBeamConstitutive.h -------------------------------------------------------------------------------- /src/constitutive/TACSIsoShellConstitutive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSIsoShellConstitutive.cpp -------------------------------------------------------------------------------- /src/constitutive/TACSIsoShellConstitutive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSIsoShellConstitutive.h -------------------------------------------------------------------------------- /src/constitutive/TACSIsoTubeBeamConstitutive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSIsoTubeBeamConstitutive.cpp -------------------------------------------------------------------------------- /src/constitutive/TACSIsoTubeBeamConstitutive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSIsoTubeBeamConstitutive.h -------------------------------------------------------------------------------- /src/constitutive/TACSLamParamShellConstitutive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSLamParamShellConstitutive.cpp -------------------------------------------------------------------------------- /src/constitutive/TACSLamParamShellConstitutive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSLamParamShellConstitutive.h -------------------------------------------------------------------------------- /src/constitutive/TACSMaterialProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSMaterialProperties.cpp -------------------------------------------------------------------------------- /src/constitutive/TACSMaterialProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSMaterialProperties.h -------------------------------------------------------------------------------- /src/constitutive/TACSPanelAnalysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSPanelAnalysis.cpp -------------------------------------------------------------------------------- /src/constitutive/TACSPanelAnalysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSPanelAnalysis.h -------------------------------------------------------------------------------- /src/constitutive/TACSPanelGPs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSPanelGPs.cpp -------------------------------------------------------------------------------- /src/constitutive/TACSPanelGPs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSPanelGPs.h -------------------------------------------------------------------------------- /src/constitutive/TACSPhaseChangeMaterialConstitutive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSPhaseChangeMaterialConstitutive.cpp -------------------------------------------------------------------------------- /src/constitutive/TACSPhaseChangeMaterialConstitutive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSPhaseChangeMaterialConstitutive.h -------------------------------------------------------------------------------- /src/constitutive/TACSPlaneStressConstitutive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSPlaneStressConstitutive.cpp -------------------------------------------------------------------------------- /src/constitutive/TACSPlaneStressConstitutive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSPlaneStressConstitutive.h -------------------------------------------------------------------------------- /src/constitutive/TACSPointMassConstitutive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSPointMassConstitutive.cpp -------------------------------------------------------------------------------- /src/constitutive/TACSPointMassConstitutive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSPointMassConstitutive.h -------------------------------------------------------------------------------- /src/constitutive/TACSShellConstitutive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSShellConstitutive.cpp -------------------------------------------------------------------------------- /src/constitutive/TACSShellConstitutive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSShellConstitutive.h -------------------------------------------------------------------------------- /src/constitutive/TACSSmearedCompositeShellConstitutive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSSmearedCompositeShellConstitutive.cpp -------------------------------------------------------------------------------- /src/constitutive/TACSSmearedCompositeShellConstitutive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSSmearedCompositeShellConstitutive.h -------------------------------------------------------------------------------- /src/constitutive/TACSSolidConstitutive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSSolidConstitutive.cpp -------------------------------------------------------------------------------- /src/constitutive/TACSSolidConstitutive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/TACSSolidConstitutive.h -------------------------------------------------------------------------------- /src/constitutive/compFSDTStiffness.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/compFSDTStiffness.cpp -------------------------------------------------------------------------------- /src/constitutive/compFSDTStiffness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/constitutive/compFSDTStiffness.h -------------------------------------------------------------------------------- /src/elements/FElibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/FElibrary.cpp -------------------------------------------------------------------------------- /src/elements/FElibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/FElibrary.h -------------------------------------------------------------------------------- /src/elements/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/Makefile -------------------------------------------------------------------------------- /src/elements/TACSCentrifugalForce3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSCentrifugalForce3D.cpp -------------------------------------------------------------------------------- /src/elements/TACSCentrifugalForce3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSCentrifugalForce3D.h -------------------------------------------------------------------------------- /src/elements/TACSConvectiveTraction2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSConvectiveTraction2D.cpp -------------------------------------------------------------------------------- /src/elements/TACSConvectiveTraction2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSConvectiveTraction2D.h -------------------------------------------------------------------------------- /src/elements/TACSConvectiveTraction3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSConvectiveTraction3D.cpp -------------------------------------------------------------------------------- /src/elements/TACSConvectiveTraction3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSConvectiveTraction3D.h -------------------------------------------------------------------------------- /src/elements/TACSElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSElement.cpp -------------------------------------------------------------------------------- /src/elements/TACSElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSElement.h -------------------------------------------------------------------------------- /src/elements/TACSElement2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSElement2D.cpp -------------------------------------------------------------------------------- /src/elements/TACSElement2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSElement2D.h -------------------------------------------------------------------------------- /src/elements/TACSElement3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSElement3D.cpp -------------------------------------------------------------------------------- /src/elements/TACSElement3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSElement3D.h -------------------------------------------------------------------------------- /src/elements/TACSElementAlgebra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSElementAlgebra.h -------------------------------------------------------------------------------- /src/elements/TACSElementModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSElementModel.h -------------------------------------------------------------------------------- /src/elements/TACSElementQuaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSElementQuaternion.h -------------------------------------------------------------------------------- /src/elements/TACSElementTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSElementTypes.cpp -------------------------------------------------------------------------------- /src/elements/TACSElementTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSElementTypes.h -------------------------------------------------------------------------------- /src/elements/TACSElementVerification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSElementVerification.cpp -------------------------------------------------------------------------------- /src/elements/TACSElementVerification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSElementVerification.h -------------------------------------------------------------------------------- /src/elements/TACSHeatConduction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSHeatConduction.cpp -------------------------------------------------------------------------------- /src/elements/TACSHeatConduction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSHeatConduction.h -------------------------------------------------------------------------------- /src/elements/TACSInertialForce2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSInertialForce2D.cpp -------------------------------------------------------------------------------- /src/elements/TACSInertialForce2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSInertialForce2D.h -------------------------------------------------------------------------------- /src/elements/TACSInertialForce3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSInertialForce3D.cpp -------------------------------------------------------------------------------- /src/elements/TACSInertialForce3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSInertialForce3D.h -------------------------------------------------------------------------------- /src/elements/TACSLinearElasticity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSLinearElasticity.cpp -------------------------------------------------------------------------------- /src/elements/TACSLinearElasticity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSLinearElasticity.h -------------------------------------------------------------------------------- /src/elements/TACSNeohookean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSNeohookean.cpp -------------------------------------------------------------------------------- /src/elements/TACSNeohookean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSNeohookean.h -------------------------------------------------------------------------------- /src/elements/TACSPCMHeatConduction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSPCMHeatConduction.cpp -------------------------------------------------------------------------------- /src/elements/TACSPCMHeatConduction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSPCMHeatConduction.h -------------------------------------------------------------------------------- /src/elements/TACSPlateModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSPlateModel.cpp -------------------------------------------------------------------------------- /src/elements/TACSPlateModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSPlateModel.h -------------------------------------------------------------------------------- /src/elements/TACSPressure2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSPressure2D.cpp -------------------------------------------------------------------------------- /src/elements/TACSPressure2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSPressure2D.h -------------------------------------------------------------------------------- /src/elements/TACSPressure3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSPressure3D.cpp -------------------------------------------------------------------------------- /src/elements/TACSPressure3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSPressure3D.h -------------------------------------------------------------------------------- /src/elements/TACSThermoelasticPlateModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSThermoelasticPlateModel.cpp -------------------------------------------------------------------------------- /src/elements/TACSThermoelasticPlateModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSThermoelasticPlateModel.h -------------------------------------------------------------------------------- /src/elements/TACSThermoelasticity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSThermoelasticity.cpp -------------------------------------------------------------------------------- /src/elements/TACSThermoelasticity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSThermoelasticity.h -------------------------------------------------------------------------------- /src/elements/TACSTraction2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSTraction2D.cpp -------------------------------------------------------------------------------- /src/elements/TACSTraction2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSTraction2D.h -------------------------------------------------------------------------------- /src/elements/TACSTraction3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSTraction3D.cpp -------------------------------------------------------------------------------- /src/elements/TACSTraction3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/TACSTraction3D.h -------------------------------------------------------------------------------- /src/elements/a2d/a2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/a2d/a2d.h -------------------------------------------------------------------------------- /src/elements/a2d/a2dmatcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/a2d/a2dmatcore.h -------------------------------------------------------------------------------- /src/elements/a2d/a2dmatops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/a2d/a2dmatops.h -------------------------------------------------------------------------------- /src/elements/a2d/a2dobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/a2d/a2dobjs.h -------------------------------------------------------------------------------- /src/elements/a2d/a2dveccore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/a2d/a2dveccore.h -------------------------------------------------------------------------------- /src/elements/a2d/a2dvecops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/a2d/a2dvecops.h -------------------------------------------------------------------------------- /src/elements/basis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/Makefile -------------------------------------------------------------------------------- /src/elements/basis/TACSBasisMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSBasisMacros.h -------------------------------------------------------------------------------- /src/elements/basis/TACSBeamBasis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSBeamBasis.cpp -------------------------------------------------------------------------------- /src/elements/basis/TACSBeamBasis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSBeamBasis.h -------------------------------------------------------------------------------- /src/elements/basis/TACSBernsteinInterpolation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSBernsteinInterpolation.h -------------------------------------------------------------------------------- /src/elements/basis/TACSElementBasis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSElementBasis.cpp -------------------------------------------------------------------------------- /src/elements/basis/TACSElementBasis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSElementBasis.h -------------------------------------------------------------------------------- /src/elements/basis/TACSElementMappedBasis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSElementMappedBasis.cpp -------------------------------------------------------------------------------- /src/elements/basis/TACSElementMappedBasis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSElementMappedBasis.h -------------------------------------------------------------------------------- /src/elements/basis/TACSGaussQuadrature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSGaussQuadrature.h -------------------------------------------------------------------------------- /src/elements/basis/TACSHexaBasis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSHexaBasis.cpp -------------------------------------------------------------------------------- /src/elements/basis/TACSHexaBasis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSHexaBasis.h -------------------------------------------------------------------------------- /src/elements/basis/TACSHexaBernsteinBasis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSHexaBernsteinBasis.cpp -------------------------------------------------------------------------------- /src/elements/basis/TACSHexaBernsteinBasis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSHexaBernsteinBasis.h -------------------------------------------------------------------------------- /src/elements/basis/TACSLagrangeInterpolation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSLagrangeInterpolation.h -------------------------------------------------------------------------------- /src/elements/basis/TACSLineBasis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSLineBasis.cpp -------------------------------------------------------------------------------- /src/elements/basis/TACSLineBasis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSLineBasis.h -------------------------------------------------------------------------------- /src/elements/basis/TACSMITCBasis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSMITCBasis.cpp -------------------------------------------------------------------------------- /src/elements/basis/TACSMITCBasis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSMITCBasis.h -------------------------------------------------------------------------------- /src/elements/basis/TACSMITCQuadBasis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSMITCQuadBasis.cpp -------------------------------------------------------------------------------- /src/elements/basis/TACSMITCQuadBasis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSMITCQuadBasis.h -------------------------------------------------------------------------------- /src/elements/basis/TACSMITCTriangleBasis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSMITCTriangleBasis.h -------------------------------------------------------------------------------- /src/elements/basis/TACSQuadBasis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSQuadBasis.cpp -------------------------------------------------------------------------------- /src/elements/basis/TACSQuadBasis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSQuadBasis.h -------------------------------------------------------------------------------- /src/elements/basis/TACSQuadBernsteinBasis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSQuadBernsteinBasis.cpp -------------------------------------------------------------------------------- /src/elements/basis/TACSQuadBernsteinBasis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSQuadBernsteinBasis.h -------------------------------------------------------------------------------- /src/elements/basis/TACSTensorProductBasisImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSTensorProductBasisImpl.cpp -------------------------------------------------------------------------------- /src/elements/basis/TACSTensorProductBasisImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSTensorProductBasisImpl.h -------------------------------------------------------------------------------- /src/elements/basis/TACSTetrahedralBasis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSTetrahedralBasis.cpp -------------------------------------------------------------------------------- /src/elements/basis/TACSTetrahedralBasis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSTetrahedralBasis.h -------------------------------------------------------------------------------- /src/elements/basis/TACSTetrahedronQuadrature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSTetrahedronQuadrature.h -------------------------------------------------------------------------------- /src/elements/basis/TACSTriangleQuadrature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSTriangleQuadrature.h -------------------------------------------------------------------------------- /src/elements/basis/TACSTriangularBasis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSTriangularBasis.cpp -------------------------------------------------------------------------------- /src/elements/basis/TACSTriangularBasis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/basis/TACSTriangularBasis.h -------------------------------------------------------------------------------- /src/elements/direct/CoupledThermoSolid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/direct/CoupledThermoSolid.h -------------------------------------------------------------------------------- /src/elements/direct/LargeRotUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/direct/LargeRotUtils.cpp -------------------------------------------------------------------------------- /src/elements/direct/LargeRotUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/direct/LargeRotUtils.h -------------------------------------------------------------------------------- /src/elements/direct/MITCShell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/direct/MITCShell.h -------------------------------------------------------------------------------- /src/elements/direct/PlaneStressCoupledThermoQuad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/direct/PlaneStressCoupledThermoQuad.h -------------------------------------------------------------------------------- /src/elements/direct/PlaneStressCoupledThermoTraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/direct/PlaneStressCoupledThermoTraction.h -------------------------------------------------------------------------------- /src/elements/direct/PlaneStressQuad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/direct/PlaneStressQuad.h -------------------------------------------------------------------------------- /src/elements/direct/PlaneStressTraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/direct/PlaneStressTraction.h -------------------------------------------------------------------------------- /src/elements/direct/PlaneStressTri6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/direct/PlaneStressTri6.cpp -------------------------------------------------------------------------------- /src/elements/direct/PlaneStressTri6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/direct/PlaneStressTri6.h -------------------------------------------------------------------------------- /src/elements/direct/PoissonElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/direct/PoissonElement.h -------------------------------------------------------------------------------- /src/elements/direct/ShellUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/direct/ShellUtils.cpp -------------------------------------------------------------------------------- /src/elements/direct/ShellUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/direct/ShellUtils.h -------------------------------------------------------------------------------- /src/elements/direct/Solid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/direct/Solid.h -------------------------------------------------------------------------------- /src/elements/direct/TACS2DCoupledThermoElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/direct/TACS2DCoupledThermoElement.h -------------------------------------------------------------------------------- /src/elements/direct/TACS2DElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/direct/TACS2DElement.h -------------------------------------------------------------------------------- /src/elements/direct/TACS3DCoupledThermoElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/direct/TACS3DCoupledThermoElement.h -------------------------------------------------------------------------------- /src/elements/direct/TACS3DCoupledThermoTraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/direct/TACS3DCoupledThermoTraction.h -------------------------------------------------------------------------------- /src/elements/direct/TACS3DElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/direct/TACS3DElement.h -------------------------------------------------------------------------------- /src/elements/direct/TACS3DTraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/direct/TACS3DTraction.h -------------------------------------------------------------------------------- /src/elements/direct/TACSShell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/direct/TACSShell.cpp -------------------------------------------------------------------------------- /src/elements/direct/TACSShell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/direct/TACSShell.h -------------------------------------------------------------------------------- /src/elements/direct/TACSShellTraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/direct/TACSShellTraction.h -------------------------------------------------------------------------------- /src/elements/direct/TensorToolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/direct/TensorToolbox.h -------------------------------------------------------------------------------- /src/elements/direct/ThermoElements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/direct/ThermoElements.h -------------------------------------------------------------------------------- /src/elements/dynamics/MITC3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/dynamics/MITC3.cpp -------------------------------------------------------------------------------- /src/elements/dynamics/MITC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/dynamics/MITC3.h -------------------------------------------------------------------------------- /src/elements/dynamics/MITC9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/dynamics/MITC9.cpp -------------------------------------------------------------------------------- /src/elements/dynamics/MITC9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/dynamics/MITC9.h -------------------------------------------------------------------------------- /src/elements/dynamics/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/dynamics/Makefile -------------------------------------------------------------------------------- /src/elements/dynamics/TACSGibbsVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/dynamics/TACSGibbsVector.h -------------------------------------------------------------------------------- /src/elements/dynamics/TACSKinematicConstraints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/dynamics/TACSKinematicConstraints.cpp -------------------------------------------------------------------------------- /src/elements/dynamics/TACSKinematicConstraints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/dynamics/TACSKinematicConstraints.h -------------------------------------------------------------------------------- /src/elements/dynamics/TACSRigidBody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/dynamics/TACSRigidBody.cpp -------------------------------------------------------------------------------- /src/elements/dynamics/TACSRigidBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/dynamics/TACSRigidBody.h -------------------------------------------------------------------------------- /src/elements/shell/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/Makefile -------------------------------------------------------------------------------- /src/elements/shell/TACSBeamCentrifugalForce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSBeamCentrifugalForce.h -------------------------------------------------------------------------------- /src/elements/shell/TACSBeamElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSBeamElement.h -------------------------------------------------------------------------------- /src/elements/shell/TACSBeamElementBasis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSBeamElementBasis.h -------------------------------------------------------------------------------- /src/elements/shell/TACSBeamElementModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSBeamElementModel.h -------------------------------------------------------------------------------- /src/elements/shell/TACSBeamElementQuadrature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSBeamElementQuadrature.h -------------------------------------------------------------------------------- /src/elements/shell/TACSBeamElementTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSBeamElementTransform.h -------------------------------------------------------------------------------- /src/elements/shell/TACSBeamInertialForce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSBeamInertialForce.h -------------------------------------------------------------------------------- /src/elements/shell/TACSBeamTraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSBeamTraction.h -------------------------------------------------------------------------------- /src/elements/shell/TACSBeamUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSBeamUtilities.h -------------------------------------------------------------------------------- /src/elements/shell/TACSDirector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSDirector.h -------------------------------------------------------------------------------- /src/elements/shell/TACSMassCentrifugalForce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSMassCentrifugalForce.cpp -------------------------------------------------------------------------------- /src/elements/shell/TACSMassCentrifugalForce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSMassCentrifugalForce.h -------------------------------------------------------------------------------- /src/elements/shell/TACSMassElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSMassElement.cpp -------------------------------------------------------------------------------- /src/elements/shell/TACSMassElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSMassElement.h -------------------------------------------------------------------------------- /src/elements/shell/TACSMassInertialForce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSMassInertialForce.cpp -------------------------------------------------------------------------------- /src/elements/shell/TACSMassInertialForce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSMassInertialForce.h -------------------------------------------------------------------------------- /src/elements/shell/TACSRBE2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSRBE2.cpp -------------------------------------------------------------------------------- /src/elements/shell/TACSRBE2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSRBE2.h -------------------------------------------------------------------------------- /src/elements/shell/TACSRBE3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSRBE3.cpp -------------------------------------------------------------------------------- /src/elements/shell/TACSRBE3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSRBE3.h -------------------------------------------------------------------------------- /src/elements/shell/TACSShellCentrifugalForce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSShellCentrifugalForce.h -------------------------------------------------------------------------------- /src/elements/shell/TACSShellElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSShellElement.h -------------------------------------------------------------------------------- /src/elements/shell/TACSShellElementDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSShellElementDefs.h -------------------------------------------------------------------------------- /src/elements/shell/TACSShellElementModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSShellElementModel.h -------------------------------------------------------------------------------- /src/elements/shell/TACSShellElementQuadBasis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSShellElementQuadBasis.h -------------------------------------------------------------------------------- /src/elements/shell/TACSShellElementQuadrature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSShellElementQuadrature.h -------------------------------------------------------------------------------- /src/elements/shell/TACSShellElementTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSShellElementTransform.h -------------------------------------------------------------------------------- /src/elements/shell/TACSShellElementTriBasis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSShellElementTriBasis.h -------------------------------------------------------------------------------- /src/elements/shell/TACSShellInertialForce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSShellInertialForce.h -------------------------------------------------------------------------------- /src/elements/shell/TACSShellInplaneElementModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSShellInplaneElementModel.h -------------------------------------------------------------------------------- /src/elements/shell/TACSShellPressure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSShellPressure.h -------------------------------------------------------------------------------- /src/elements/shell/TACSShellTraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSShellTraction.h -------------------------------------------------------------------------------- /src/elements/shell/TACSShellUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSShellUtilities.h -------------------------------------------------------------------------------- /src/elements/shell/TACSSpringElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSSpringElement.cpp -------------------------------------------------------------------------------- /src/elements/shell/TACSSpringElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSSpringElement.h -------------------------------------------------------------------------------- /src/elements/shell/TACSSpringElementTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSSpringElementTransform.h -------------------------------------------------------------------------------- /src/elements/shell/TACSThermalShellElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/elements/shell/TACSThermalShellElement.h -------------------------------------------------------------------------------- /src/functions/DisplacementIntegral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/functions/DisplacementIntegral.cpp -------------------------------------------------------------------------------- /src/functions/DisplacementIntegral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/functions/DisplacementIntegral.h -------------------------------------------------------------------------------- /src/functions/KSMatTemperature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/functions/KSMatTemperature.cpp -------------------------------------------------------------------------------- /src/functions/KSMatTemperature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/functions/KSMatTemperature.h -------------------------------------------------------------------------------- /src/functions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/functions/Makefile -------------------------------------------------------------------------------- /src/functions/TACSAverageTemperature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/functions/TACSAverageTemperature.cpp -------------------------------------------------------------------------------- /src/functions/TACSAverageTemperature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/functions/TACSAverageTemperature.h -------------------------------------------------------------------------------- /src/functions/TACSCenterOfMass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/functions/TACSCenterOfMass.cpp -------------------------------------------------------------------------------- /src/functions/TACSCenterOfMass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/functions/TACSCenterOfMass.h -------------------------------------------------------------------------------- /src/functions/TACSCompliance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/functions/TACSCompliance.cpp -------------------------------------------------------------------------------- /src/functions/TACSCompliance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/functions/TACSCompliance.h -------------------------------------------------------------------------------- /src/functions/TACSEnclosedVolume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/functions/TACSEnclosedVolume.cpp -------------------------------------------------------------------------------- /src/functions/TACSEnclosedVolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/functions/TACSEnclosedVolume.h -------------------------------------------------------------------------------- /src/functions/TACSFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/functions/TACSFunction.cpp -------------------------------------------------------------------------------- /src/functions/TACSFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/functions/TACSFunction.h -------------------------------------------------------------------------------- /src/functions/TACSHeatFlux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/functions/TACSHeatFlux.cpp -------------------------------------------------------------------------------- /src/functions/TACSHeatFlux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/functions/TACSHeatFlux.h -------------------------------------------------------------------------------- /src/functions/TACSInducedFailure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/functions/TACSInducedFailure.cpp -------------------------------------------------------------------------------- /src/functions/TACSInducedFailure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/functions/TACSInducedFailure.h -------------------------------------------------------------------------------- /src/functions/TACSKSDisplacement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/functions/TACSKSDisplacement.cpp -------------------------------------------------------------------------------- /src/functions/TACSKSDisplacement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/functions/TACSKSDisplacement.h -------------------------------------------------------------------------------- /src/functions/TACSKSFailure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/functions/TACSKSFailure.cpp -------------------------------------------------------------------------------- /src/functions/TACSKSFailure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/functions/TACSKSFailure.h -------------------------------------------------------------------------------- /src/functions/TACSKSTemperature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/functions/TACSKSTemperature.cpp -------------------------------------------------------------------------------- /src/functions/TACSKSTemperature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/functions/TACSKSTemperature.h -------------------------------------------------------------------------------- /src/functions/TACSMomentOfInertia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/functions/TACSMomentOfInertia.cpp -------------------------------------------------------------------------------- /src/functions/TACSMomentOfInertia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/functions/TACSMomentOfInertia.h -------------------------------------------------------------------------------- /src/functions/TACSStructuralMass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/functions/TACSStructuralMass.cpp -------------------------------------------------------------------------------- /src/functions/TACSStructuralMass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/functions/TACSStructuralMass.h -------------------------------------------------------------------------------- /src/io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/io/Makefile -------------------------------------------------------------------------------- /src/io/TACSFH5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/io/TACSFH5.cpp -------------------------------------------------------------------------------- /src/io/TACSFH5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/io/TACSFH5.h -------------------------------------------------------------------------------- /src/io/TACSFH5Loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/io/TACSFH5Loader.cpp -------------------------------------------------------------------------------- /src/io/TACSFH5Loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/io/TACSFH5Loader.h -------------------------------------------------------------------------------- /src/io/TACSMarchingCubes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/io/TACSMarchingCubes.cpp -------------------------------------------------------------------------------- /src/io/TACSMarchingCubes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/io/TACSMarchingCubes.h -------------------------------------------------------------------------------- /src/io/TACSMeshLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/io/TACSMeshLoader.cpp -------------------------------------------------------------------------------- /src/io/TACSMeshLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/io/TACSMeshLoader.h -------------------------------------------------------------------------------- /src/io/TACSToFH5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/io/TACSToFH5.cpp -------------------------------------------------------------------------------- /src/io/TACSToFH5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/io/TACSToFH5.h -------------------------------------------------------------------------------- /src/tacslapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/tacslapack.h -------------------------------------------------------------------------------- /src/tacsmetis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/src/tacsmetis.h -------------------------------------------------------------------------------- /tacs/TACS.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/TACS.pxd -------------------------------------------------------------------------------- /tacs/TACS.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/TACS.pyx -------------------------------------------------------------------------------- /tacs/TACSConstitutiveWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/TACSConstitutiveWrapper.h -------------------------------------------------------------------------------- /tacs/TACSElementTemplates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/TACSElementTemplates.h -------------------------------------------------------------------------------- /tacs/TACSElementWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/TACSElementWrapper.h -------------------------------------------------------------------------------- /tacs/__init__.pxd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tacs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/__init__.py -------------------------------------------------------------------------------- /tacs/caps2tacs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/caps2tacs/__init__.py -------------------------------------------------------------------------------- /tacs/caps2tacs/aflr_aim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/caps2tacs/aflr_aim.py -------------------------------------------------------------------------------- /tacs/caps2tacs/analysis_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/caps2tacs/analysis_function.py -------------------------------------------------------------------------------- /tacs/caps2tacs/constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/caps2tacs/constraints.py -------------------------------------------------------------------------------- /tacs/caps2tacs/egads_aim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/caps2tacs/egads_aim.py -------------------------------------------------------------------------------- /tacs/caps2tacs/gif_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/caps2tacs/gif_writer.py -------------------------------------------------------------------------------- /tacs/caps2tacs/loads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/caps2tacs/loads.py -------------------------------------------------------------------------------- /tacs/caps2tacs/materials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/caps2tacs/materials.py -------------------------------------------------------------------------------- /tacs/caps2tacs/proc_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/caps2tacs/proc_decorator.py -------------------------------------------------------------------------------- /tacs/caps2tacs/property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/caps2tacs/property.py -------------------------------------------------------------------------------- /tacs/caps2tacs/tacs_aim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/caps2tacs/tacs_aim.py -------------------------------------------------------------------------------- /tacs/caps2tacs/tacs_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/caps2tacs/tacs_model.py -------------------------------------------------------------------------------- /tacs/caps2tacs/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/caps2tacs/variables.py -------------------------------------------------------------------------------- /tacs/constitutive.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/constitutive.pxd -------------------------------------------------------------------------------- /tacs/constitutive.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/constitutive.pyx -------------------------------------------------------------------------------- /tacs/constraints/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/constraints/__init__.py -------------------------------------------------------------------------------- /tacs/constraints/adjacency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/constraints/adjacency.py -------------------------------------------------------------------------------- /tacs/constraints/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/constraints/base.py -------------------------------------------------------------------------------- /tacs/constraints/dv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/constraints/dv.py -------------------------------------------------------------------------------- /tacs/constraints/panel_length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/constraints/panel_length.py -------------------------------------------------------------------------------- /tacs/constraints/panel_width.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/constraints/panel_width.py -------------------------------------------------------------------------------- /tacs/constraints/volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/constraints/volume.py -------------------------------------------------------------------------------- /tacs/cpp_headers/TACS.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/cpp_headers/TACS.pxd -------------------------------------------------------------------------------- /tacs/cpp_headers/__init__.pxd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tacs/cpp_headers/constitutive.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/cpp_headers/constitutive.pxd -------------------------------------------------------------------------------- /tacs/cpp_headers/elements.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/cpp_headers/elements.pxd -------------------------------------------------------------------------------- /tacs/cpp_headers/functions.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/cpp_headers/functions.pxd -------------------------------------------------------------------------------- /tacs/elements.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/elements.pxd -------------------------------------------------------------------------------- /tacs/elements.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/elements.pyx -------------------------------------------------------------------------------- /tacs/functions.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/functions.pxd -------------------------------------------------------------------------------- /tacs/functions.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/functions.pyx -------------------------------------------------------------------------------- /tacs/mphys/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/mphys/__init__.py -------------------------------------------------------------------------------- /tacs/mphys/buckling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/mphys/buckling.py -------------------------------------------------------------------------------- /tacs/mphys/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/mphys/builder.py -------------------------------------------------------------------------------- /tacs/mphys/constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/mphys/constraints.py -------------------------------------------------------------------------------- /tacs/mphys/coupling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/mphys/coupling.py -------------------------------------------------------------------------------- /tacs/mphys/dv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/mphys/dv.py -------------------------------------------------------------------------------- /tacs/mphys/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/mphys/functions.py -------------------------------------------------------------------------------- /tacs/mphys/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/mphys/mesh.py -------------------------------------------------------------------------------- /tacs/mphys/postcoupling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/mphys/postcoupling.py -------------------------------------------------------------------------------- /tacs/mphys/precoupling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/mphys/precoupling.py -------------------------------------------------------------------------------- /tacs/mphys/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/mphys/solver.py -------------------------------------------------------------------------------- /tacs/mphys/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/mphys/utils.py -------------------------------------------------------------------------------- /tacs/mpi-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/mpi-compat.h -------------------------------------------------------------------------------- /tacs/problems/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/problems/__init__.py -------------------------------------------------------------------------------- /tacs/problems/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/problems/base.py -------------------------------------------------------------------------------- /tacs/problems/buckling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/problems/buckling.py -------------------------------------------------------------------------------- /tacs/problems/modal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/problems/modal.py -------------------------------------------------------------------------------- /tacs/problems/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/problems/static.py -------------------------------------------------------------------------------- /tacs/problems/transient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/problems/transient.py -------------------------------------------------------------------------------- /tacs/pymeshloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/pymeshloader.py -------------------------------------------------------------------------------- /tacs/pytacs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/pytacs.py -------------------------------------------------------------------------------- /tacs/solvers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/solvers/__init__.py -------------------------------------------------------------------------------- /tacs/solvers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/solvers/base.py -------------------------------------------------------------------------------- /tacs/solvers/continuation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/solvers/continuation.py -------------------------------------------------------------------------------- /tacs/solvers/newton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/solvers/newton.py -------------------------------------------------------------------------------- /tacs/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/system.py -------------------------------------------------------------------------------- /tacs/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tacs/utilities.py -------------------------------------------------------------------------------- /tests/constitutive_tests/test_basic_beam_constitutive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/constitutive_tests/test_basic_beam_constitutive.py -------------------------------------------------------------------------------- /tests/constitutive_tests/test_blade_stiffened_shell_constitutive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/constitutive_tests/test_blade_stiffened_shell_constitutive.py -------------------------------------------------------------------------------- /tests/constitutive_tests/test_composite_shell_constitutive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/constitutive_tests/test_composite_shell_constitutive.py -------------------------------------------------------------------------------- /tests/constitutive_tests/test_dof_spring_constitutive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/constitutive_tests/test_dof_spring_constitutive.py -------------------------------------------------------------------------------- /tests/constitutive_tests/test_general_mass_constitutive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/constitutive_tests/test_general_mass_constitutive.py -------------------------------------------------------------------------------- /tests/constitutive_tests/test_general_spring_constitutive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/constitutive_tests/test_general_spring_constitutive.py -------------------------------------------------------------------------------- /tests/constitutive_tests/test_gp_blade_shell_constitutive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/constitutive_tests/test_gp_blade_shell_constitutive.py -------------------------------------------------------------------------------- /tests/constitutive_tests/test_iso_rectangle_beam_constitutive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/constitutive_tests/test_iso_rectangle_beam_constitutive.py -------------------------------------------------------------------------------- /tests/constitutive_tests/test_iso_shell_constitutive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/constitutive_tests/test_iso_shell_constitutive.py -------------------------------------------------------------------------------- /tests/constitutive_tests/test_iso_tube_beam_constitutive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/constitutive_tests/test_iso_tube_beam_constitutive.py -------------------------------------------------------------------------------- /tests/constitutive_tests/test_pcm_constitutive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/constitutive_tests/test_pcm_constitutive.py -------------------------------------------------------------------------------- /tests/constitutive_tests/test_plane_stress_constitutive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/constitutive_tests/test_plane_stress_constitutive.py -------------------------------------------------------------------------------- /tests/constitutive_tests/test_point_mass_constitutive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/constitutive_tests/test_point_mass_constitutive.py -------------------------------------------------------------------------------- /tests/constitutive_tests/test_smeared_composite_shell_constitutive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/constitutive_tests/test_smeared_composite_shell_constitutive.py -------------------------------------------------------------------------------- /tests/constitutive_tests/test_solid_constitutive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/constitutive_tests/test_solid_constitutive.py -------------------------------------------------------------------------------- /tests/element_tests/basis_tests/test_cubic_hexa_basis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/basis_tests/test_cubic_hexa_basis.py -------------------------------------------------------------------------------- /tests/element_tests/basis_tests/test_cubic_quad_basis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/basis_tests/test_cubic_quad_basis.py -------------------------------------------------------------------------------- /tests/element_tests/basis_tests/test_linear_hexa_basis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/basis_tests/test_linear_hexa_basis.py -------------------------------------------------------------------------------- /tests/element_tests/basis_tests/test_linear_quad_basis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/basis_tests/test_linear_quad_basis.py -------------------------------------------------------------------------------- /tests/element_tests/basis_tests/test_linear_tetrahedral_basis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/basis_tests/test_linear_tetrahedral_basis.py -------------------------------------------------------------------------------- /tests/element_tests/basis_tests/test_linear_triangle_basis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/basis_tests/test_linear_triangle_basis.py -------------------------------------------------------------------------------- /tests/element_tests/basis_tests/test_quadratic_hexa_basis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/basis_tests/test_quadratic_hexa_basis.py -------------------------------------------------------------------------------- /tests/element_tests/basis_tests/test_quadratic_quad_basis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/basis_tests/test_quadratic_quad_basis.py -------------------------------------------------------------------------------- /tests/element_tests/basis_tests/test_quadratic_tetrahedral_basis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/basis_tests/test_quadratic_tetrahedral_basis.py -------------------------------------------------------------------------------- /tests/element_tests/basis_tests/test_quadratic_triangle_basis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/basis_tests/test_quadratic_triangle_basis.py -------------------------------------------------------------------------------- /tests/element_tests/shell_tests/test_beam_centrifugal_force.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/shell_tests/test_beam_centrifugal_force.py -------------------------------------------------------------------------------- /tests/element_tests/shell_tests/test_beam_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/shell_tests/test_beam_element.py -------------------------------------------------------------------------------- /tests/element_tests/shell_tests/test_beam_inertial_force.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/shell_tests/test_beam_inertial_force.py -------------------------------------------------------------------------------- /tests/element_tests/shell_tests/test_beam_traction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/shell_tests/test_beam_traction.py -------------------------------------------------------------------------------- /tests/element_tests/shell_tests/test_mass_centrifugal_force.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/shell_tests/test_mass_centrifugal_force.py -------------------------------------------------------------------------------- /tests/element_tests/shell_tests/test_mass_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/shell_tests/test_mass_element.py -------------------------------------------------------------------------------- /tests/element_tests/shell_tests/test_mass_inertial_force.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/shell_tests/test_mass_inertial_force.py -------------------------------------------------------------------------------- /tests/element_tests/shell_tests/test_rbe2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/shell_tests/test_rbe2.py -------------------------------------------------------------------------------- /tests/element_tests/shell_tests/test_rbe3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/shell_tests/test_rbe3.py -------------------------------------------------------------------------------- /tests/element_tests/shell_tests/test_shell_centrifugal_force.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/shell_tests/test_shell_centrifugal_force.py -------------------------------------------------------------------------------- /tests/element_tests/shell_tests/test_shell_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/shell_tests/test_shell_element.py -------------------------------------------------------------------------------- /tests/element_tests/shell_tests/test_shell_inertial_force.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/shell_tests/test_shell_inertial_force.py -------------------------------------------------------------------------------- /tests/element_tests/shell_tests/test_shell_pressure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/shell_tests/test_shell_pressure.py -------------------------------------------------------------------------------- /tests/element_tests/shell_tests/test_shell_traction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/shell_tests/test_shell_traction.py -------------------------------------------------------------------------------- /tests/element_tests/shell_tests/test_spring_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/shell_tests/test_spring_element.py -------------------------------------------------------------------------------- /tests/element_tests/test_centrifugal_force_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/test_centrifugal_force_3d.py -------------------------------------------------------------------------------- /tests/element_tests/test_element_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/test_element_2d.py -------------------------------------------------------------------------------- /tests/element_tests/test_element_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/test_element_3d.py -------------------------------------------------------------------------------- /tests/element_tests/test_heat_conduction_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/test_heat_conduction_2d.py -------------------------------------------------------------------------------- /tests/element_tests/test_heat_conduction_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/test_heat_conduction_3d.py -------------------------------------------------------------------------------- /tests/element_tests/test_inertial_force_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/test_inertial_force_2d.py -------------------------------------------------------------------------------- /tests/element_tests/test_inertial_force_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/test_inertial_force_3d.py -------------------------------------------------------------------------------- /tests/element_tests/test_linear_elasticity_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/test_linear_elasticity_2d.py -------------------------------------------------------------------------------- /tests/element_tests/test_linear_elasticity_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/test_linear_elasticity_3d.py -------------------------------------------------------------------------------- /tests/element_tests/test_linear_thermoelasticity_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/test_linear_thermoelasticity_2d.py -------------------------------------------------------------------------------- /tests/element_tests/test_linear_thermoelasticity_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/test_linear_thermoelasticity_3d.py -------------------------------------------------------------------------------- /tests/element_tests/test_pcm_heat_conduction_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/test_pcm_heat_conduction_2d.py -------------------------------------------------------------------------------- /tests/element_tests/test_pressure_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/test_pressure_2d.py -------------------------------------------------------------------------------- /tests/element_tests/test_pressure_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/test_pressure_3d.py -------------------------------------------------------------------------------- /tests/element_tests/test_traction_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/test_traction_2d.py -------------------------------------------------------------------------------- /tests/element_tests/test_traction_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/element_tests/test_traction_3d.py -------------------------------------------------------------------------------- /tests/integration_tests/input_files/5x5x5_cube.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/5x5x5_cube.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/I_beam.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/I_beam.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/beam_model.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/beam_model.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/beam_model_pbarl_Ibeam.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/beam_model_pbarl_Ibeam.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/beam_model_pbarl_rect.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/beam_model_pbarl_rect.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/beam_model_pbarl_tube.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/beam_model_pbarl_tube.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/beam_model_skewed.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/beam_model_skewed.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/beam_tip_mass.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/beam_tip_mass.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/circ-plate-dirichlet-bcs.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/circ-plate-dirichlet-bcs.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/closed_cylinder.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/closed_cylinder.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/comp_plate.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/comp_plate.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/cylinder.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/cylinder.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/debug_plate.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/debug_plate.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/debug_plate_w_pt_mass.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/debug_plate_w_pt_mass.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/general_mass.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/general_mass.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/hemisphere.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/hemisphere.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/partitioned_plate.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/partitioned_plate.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/plate.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/plate.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/plate_combined_buckle.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/plate_combined_buckle.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/plate_shear_buckle.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/plate_shear_buckle.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/point_mass.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/point_mass.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/quarterHemisphere.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/quarterHemisphere.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/rbe_test.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/rbe_test.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/rigid_point_mass.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/rigid_point_mass.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/simple_naca_wing.csm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/simple_naca_wing.csm -------------------------------------------------------------------------------- /tests/integration_tests/input_files/simple_spring.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/simple_spring.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/slanted_plate.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/slanted_plate.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/solid_beam.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/solid_beam.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/ss_plate.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/ss_plate.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/ss_plate_tri.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/ss_plate_tri.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/test_beam.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/test_beam.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/transient_beam.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/transient_beam.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/two_hexs.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/two_hexs.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/unit_cube.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/unit_cube.bdf -------------------------------------------------------------------------------- /tests/integration_tests/input_files/unit_plate.bdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/input_files/unit_plate.bdf -------------------------------------------------------------------------------- /tests/integration_tests/openmdao_analysis_base_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/openmdao_analysis_base_test.py -------------------------------------------------------------------------------- /tests/integration_tests/pytacs_analysis_base_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/pytacs_analysis_base_test.py -------------------------------------------------------------------------------- /tests/integration_tests/static_analysis_base_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/static_analysis_base_test.py -------------------------------------------------------------------------------- /tests/integration_tests/test_I_beam_mixed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_I_beam_mixed.py -------------------------------------------------------------------------------- /tests/integration_tests/test_I_beam_tractions_pbarl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_I_beam_tractions_pbarl.py -------------------------------------------------------------------------------- /tests/integration_tests/test_beam_bend_coupling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_beam_bend_coupling.py -------------------------------------------------------------------------------- /tests/integration_tests/test_beam_point_mass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_beam_point_mass.py -------------------------------------------------------------------------------- /tests/integration_tests/test_beam_write_bdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_beam_write_bdf.py -------------------------------------------------------------------------------- /tests/integration_tests/test_caps_shape_derivatives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_caps_shape_derivatives.py -------------------------------------------------------------------------------- /tests/integration_tests/test_caps_thick_derivatives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_caps_thick_derivatives.py -------------------------------------------------------------------------------- /tests/integration_tests/test_elast_beam_quadtetra_element_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_elast_beam_quadtetra_element_3d.py -------------------------------------------------------------------------------- /tests/integration_tests/test_elast_centrifugal_quadtetra_element_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_elast_centrifugal_quadtetra_element_3d.py -------------------------------------------------------------------------------- /tests/integration_tests/test_elast_linhexa_element_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_elast_linhexa_element_3d.py -------------------------------------------------------------------------------- /tests/integration_tests/test_elast_linhexa_inertial_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_elast_linhexa_inertial_3d.py -------------------------------------------------------------------------------- /tests/integration_tests/test_elast_linhexa_pressure_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_elast_linhexa_pressure_3d.py -------------------------------------------------------------------------------- /tests/integration_tests/test_elast_linquad_element_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_elast_linquad_element_2d.py -------------------------------------------------------------------------------- /tests/integration_tests/test_elast_linquad_inertial_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_elast_linquad_inertial_2d.py -------------------------------------------------------------------------------- /tests/integration_tests/test_elast_lintetra_element_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_elast_lintetra_element_3d.py -------------------------------------------------------------------------------- /tests/integration_tests/test_elast_quadtri_element_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_elast_quadtri_element_2d.py -------------------------------------------------------------------------------- /tests/integration_tests/test_general_mass_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_general_mass_element.py -------------------------------------------------------------------------------- /tests/integration_tests/test_mphys_struct_buckling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_mphys_struct_buckling.py -------------------------------------------------------------------------------- /tests/integration_tests/test_mphys_struct_hemisphere_nonlinear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_mphys_struct_hemisphere_nonlinear.py -------------------------------------------------------------------------------- /tests/integration_tests/test_mphys_struct_plate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_mphys_struct_plate.py -------------------------------------------------------------------------------- /tests/integration_tests/test_mphys_struct_point_mass_rbe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_mphys_struct_point_mass_rbe.py -------------------------------------------------------------------------------- /tests/integration_tests/test_mphys_thermal_plate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_mphys_thermal_plate.py -------------------------------------------------------------------------------- /tests/integration_tests/test_pcm_element_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_pcm_element_2d.py -------------------------------------------------------------------------------- /tests/integration_tests/test_point_mass_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_point_mass_element.py -------------------------------------------------------------------------------- /tests/integration_tests/test_rectangle_beam_offset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_rectangle_beam_offset.py -------------------------------------------------------------------------------- /tests/integration_tests/test_rectangle_beam_rotated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_rectangle_beam_rotated.py -------------------------------------------------------------------------------- /tests/integration_tests/test_rectangle_beam_tractions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_rectangle_beam_tractions.py -------------------------------------------------------------------------------- /tests/integration_tests/test_rectangle_beam_tractions_pbarl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_rectangle_beam_tractions_pbarl.py -------------------------------------------------------------------------------- /tests/integration_tests/test_rigid_body_mass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_rigid_body_mass.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_annulus_from_pynastran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_annulus_from_pynastran.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_beam_comp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_beam_comp.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_beam_grav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_beam_grav.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_beam_press.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_beam_press.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_beam_quad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_beam_quad.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_beam_tract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_beam_tract.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_beam_tri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_beam_tri.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_blade_stiffened_plate_quad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_blade_stiffened_plate_quad.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_comp_offset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_comp_offset.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_comp_smeared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_comp_smeared.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_comp_unbalanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_comp_unbalanced.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_comp_write_bdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_comp_write_bdf.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_cube_volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_cube_volume.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_cylinder_quad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_cylinder_quad.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_cylinder_volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_cylinder_volume.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_hemisphere_mixed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_hemisphere_mixed.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_hemisphere_nonlinear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_hemisphere_nonlinear.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_plate_buckling_axial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_plate_buckling_axial.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_plate_buckling_combined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_plate_buckling_combined.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_plate_buckling_shear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_plate_buckling_shear.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_plate_modal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_plate_modal.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_plate_offset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_plate_offset.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_plate_partitioned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_plate_partitioned.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_plate_quad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_plate_quad.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_plate_rbe2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_plate_rbe2.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_plate_rbe2_pytacs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_plate_rbe2_pytacs.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_plate_rbe3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_plate_rbe3.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_plate_rotated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_plate_rotated.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_plate_zero_loads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_plate_zero_loads.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_tri_buckling_axial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_tri_buckling_axial.py -------------------------------------------------------------------------------- /tests/integration_tests/test_shell_write_bdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_shell_write_bdf.py -------------------------------------------------------------------------------- /tests/integration_tests/test_simple_spring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_simple_spring.py -------------------------------------------------------------------------------- /tests/integration_tests/test_thermal_element_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_thermal_element_2d.py -------------------------------------------------------------------------------- /tests/integration_tests/test_thermal_initial_conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_thermal_initial_conditions.py -------------------------------------------------------------------------------- /tests/integration_tests/test_thermoelast_linquad_element_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_thermoelast_linquad_element_2d.py -------------------------------------------------------------------------------- /tests/integration_tests/test_trans_beam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_trans_beam.py -------------------------------------------------------------------------------- /tests/integration_tests/test_trans_beam_dirk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_trans_beam_dirk.py -------------------------------------------------------------------------------- /tests/integration_tests/test_trans_elast_linhexa_element_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_trans_elast_linhexa_element_3d.py -------------------------------------------------------------------------------- /tests/integration_tests/test_trans_elast_linquad_element_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_trans_elast_linquad_element_2d.py -------------------------------------------------------------------------------- /tests/integration_tests/test_trans_shell_beam_quad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_trans_shell_beam_quad.py -------------------------------------------------------------------------------- /tests/integration_tests/test_tube_beam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_tube_beam.py -------------------------------------------------------------------------------- /tests/integration_tests/test_tube_beam_pbarl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/test_tube_beam_pbarl.py -------------------------------------------------------------------------------- /tests/integration_tests/transient_analysis_base_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smdogroup/tacs/HEAD/tests/integration_tests/transient_analysis_base_test.py --------------------------------------------------------------------------------