mnspy 0.9.17__tar.gz → 0.9.18__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {mnspy-0.9.17 → mnspy-0.9.18}/PKG-INFO +1 -1
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_diferenciales_parciales/mef/mef.py +39 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy.egg-info/PKG-INFO +1 -1
- {mnspy-0.9.17 → mnspy-0.9.18}/setup.py +1 -1
- {mnspy-0.9.17 → mnspy-0.9.18}/LICENSE +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/README.md +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/__init__.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/derivada/__init__.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/derivada/derivada.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/derivada/derivada_discreta.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/derivada/richardson.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_algebraicas_lineales/__init__.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_algebraicas_lineales/cramer.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_algebraicas_lineales/descomposicion_LU.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_algebraicas_lineales/descomposicion_cholesky.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_algebraicas_lineales/ecuaciones_algebraicas_lineales.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_algebraicas_lineales/gauss.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_algebraicas_lineales/gauss_jordan.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_algebraicas_lineales/gauss_sediel.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_algebraicas_lineales/tridiagonal.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_diferenciales_ordinarias/__init__.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_diferenciales_ordinarias/ecuaciones_diferenciales_ordinarias.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_diferenciales_ordinarias/euler.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_diferenciales_ordinarias/heun.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_diferenciales_ordinarias/punto_medio.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_diferenciales_ordinarias/runge_kutta.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_diferenciales_parciales/__init__.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_diferenciales_parciales/ecuaciones_diferenciales_parciales.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_diferenciales_parciales/liebmann.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_diferenciales_parciales/mdf/__init__.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_diferenciales_parciales/mdf/mdf.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_diferenciales_parciales/mef/__init__.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_diferenciales_parciales/mef/armadura.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_diferenciales_parciales/mef/barra.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_diferenciales_parciales/mef/ensamble.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_diferenciales_parciales/mef/marco.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_diferenciales_parciales/mef/resorte.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_diferenciales_parciales/mef/triangular_cst.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_diferenciales_parciales/mef/viga.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_diferenciales_parciales/mvf/__init__.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_diferenciales_parciales/mvf/mvf.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_diferenciales_parciales/mvf/volumen_finito.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/integrales/__init__.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/integrales/cuadratura_adaptativa.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/integrales/gauss_legendre.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/integrales/integral.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/integrales/romberg.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/integrales/simpson_1_3.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/integrales/simpson_3_8.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/integrales/trapezoidal.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/integrales/trapezoidal_desigual.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/integrales/trapezoidal_desigual_acumulado.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/interpolaci/303/263n/__init__.py" +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/interpolaci/303/263n/inter_Lagrange.py" +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/interpolaci/303/263n/inter_Newton.py" +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/interpolaci/303/263n/inter_spline_cubica.py" +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/interpolaci/303/263n/inter_spline_lineal.py" +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/interpolaci/303/263n/interpolacion.py" +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ra/303/255ces/__init__.py" +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ra/303/255ces/bisecci/303/263n.py" +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ra/303/255ces/brent.py" +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ra/303/255ces/falsa_posicion.py" +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ra/303/255ces/muller.py" +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ra/303/255ces/newton_raphson.py" +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ra/303/255ces/punto_fijo.py" +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ra/303/255ces/raices.py" +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ra/303/255ces/secante.py" +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ra/303/255ces/secante_modificada.py" +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ra/303/255ces/wegstein.py" +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy/utilidades.py +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy.egg-info/SOURCES.txt +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy.egg-info/dependency_links.txt +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy.egg-info/requires.txt +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/mnspy.egg-info/top_level.txt +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/pyproject.toml +0 -0
- {mnspy-0.9.17 → mnspy-0.9.18}/setup.cfg +0 -0
|
@@ -178,9 +178,48 @@ class Nodo:
|
|
|
178
178
|
self._tipo_soporte = []
|
|
179
179
|
|
|
180
180
|
def get_soporte(self):
|
|
181
|
+
"""Obtiene la información del tipo de soporte asignado al nodo.
|
|
182
|
+
|
|
183
|
+
Esta información solo se utiliza para la representación gráfica en el
|
|
184
|
+
diagrama de cargas y no afecta los cálculos del análisis estructural.
|
|
185
|
+
|
|
186
|
+
Returns
|
|
187
|
+
-------
|
|
188
|
+
list[int]
|
|
189
|
+
Una lista de dos elementos que define el tipo y estilo del soporte.
|
|
190
|
+
"""
|
|
181
191
|
return self._tipo_soporte
|
|
182
192
|
|
|
183
193
|
def set_soporte(self, sop: list[int]):
|
|
194
|
+
"""Establece el tipo de soporte para el nodo.
|
|
195
|
+
|
|
196
|
+
Esta asignación es puramente para fines de visualización en el diagrama
|
|
197
|
+
de cargas y no interviene en los cálculos de la matriz de rigidez ni
|
|
198
|
+
en la resolución del sistema.
|
|
199
|
+
|
|
200
|
+
Parameters
|
|
201
|
+
----------
|
|
202
|
+
sop : list[int]
|
|
203
|
+
Una lista de dos enteros que define el soporte:
|
|
204
|
+
- ``sop[0]``: Tipo de Apoyo
|
|
205
|
+
- 0: Pivotado
|
|
206
|
+
- 1: Empotrado
|
|
207
|
+
- ``sop[1]``: Estilo del Apoyo
|
|
208
|
+
- Si Tipo Apoyo es 0 (Pivotado):
|
|
209
|
+
- 0: inferior Móvil
|
|
210
|
+
- 1: inferior Fijo
|
|
211
|
+
- 2: superior Móvil
|
|
212
|
+
- 3: superior Fijo
|
|
213
|
+
- 4: izquierda Móvil
|
|
214
|
+
- 5: izquierda Fijo
|
|
215
|
+
- 6: derecha Móvil
|
|
216
|
+
- 7: derecha Fijo
|
|
217
|
+
- Si Tipo Apoyo es 1 (Empotrado):
|
|
218
|
+
- 0: fijo izquierdo
|
|
219
|
+
- 1: fijo derecha
|
|
220
|
+
- 2: fijo inferior
|
|
221
|
+
- 3: fijo superior
|
|
222
|
+
"""
|
|
184
223
|
self._tipo_soporte = sop
|
|
185
224
|
|
|
186
225
|
def agregar_fuerza_externa(self, carga: float, gl: str) -> None:
|
|
@@ -2,7 +2,7 @@ from setuptools import setup
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name='mnspy',
|
|
5
|
-
version='0.9.
|
|
5
|
+
version='0.9.18',
|
|
6
6
|
packages=['mnspy', 'mnspy.raíces', 'mnspy.derivada', 'mnspy.integrales', 'mnspy.interpolación',
|
|
7
7
|
'mnspy.ecuaciones_algebraicas_lineales', 'mnspy.ecuaciones_diferenciales_ordinarias',
|
|
8
8
|
'mnspy.ecuaciones_diferenciales_parciales', 'mnspy.ecuaciones_diferenciales_parciales.mdf',
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_algebraicas_lineales/descomposicion_cholesky.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_diferenciales_parciales/mef/triangular_cst.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{mnspy-0.9.17 → mnspy-0.9.18}/mnspy/ecuaciones_diferenciales_parciales/mvf/volumen_finito.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|