mnspy 0.9.20__tar.gz → 0.9.22__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.20 → mnspy-0.9.22}/PKG-INFO +1 -1
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_diferenciales_parciales/mef/armadura.py +6 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_diferenciales_parciales/mef/ensamble.py +0 -8
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy.egg-info/PKG-INFO +1 -1
- {mnspy-0.9.20 → mnspy-0.9.22}/setup.py +1 -1
- {mnspy-0.9.20 → mnspy-0.9.22}/LICENSE +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/README.md +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/__init__.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/derivada/__init__.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/derivada/derivada.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/derivada/derivada_discreta.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/derivada/richardson.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_algebraicas_lineales/__init__.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_algebraicas_lineales/cramer.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_algebraicas_lineales/descomposicion_LU.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_algebraicas_lineales/descomposicion_cholesky.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_algebraicas_lineales/ecuaciones_algebraicas_lineales.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_algebraicas_lineales/gauss.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_algebraicas_lineales/gauss_jordan.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_algebraicas_lineales/gauss_sediel.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_algebraicas_lineales/tridiagonal.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_diferenciales_ordinarias/__init__.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_diferenciales_ordinarias/ecuaciones_diferenciales_ordinarias.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_diferenciales_ordinarias/euler.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_diferenciales_ordinarias/heun.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_diferenciales_ordinarias/punto_medio.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_diferenciales_ordinarias/runge_kutta.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_diferenciales_parciales/__init__.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_diferenciales_parciales/ecuaciones_diferenciales_parciales.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_diferenciales_parciales/liebmann.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_diferenciales_parciales/mdf/__init__.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_diferenciales_parciales/mdf/mdf.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_diferenciales_parciales/mef/__init__.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_diferenciales_parciales/mef/barra.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_diferenciales_parciales/mef/marco.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_diferenciales_parciales/mef/mef.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_diferenciales_parciales/mef/resorte.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_diferenciales_parciales/mef/triangular_cst.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_diferenciales_parciales/mef/viga.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_diferenciales_parciales/mvf/__init__.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_diferenciales_parciales/mvf/mvf.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_diferenciales_parciales/mvf/volumen_finito.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/integrales/__init__.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/integrales/cuadratura_adaptativa.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/integrales/gauss_legendre.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/integrales/integral.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/integrales/romberg.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/integrales/simpson_1_3.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/integrales/simpson_3_8.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/integrales/trapezoidal.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/integrales/trapezoidal_desigual.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/integrales/trapezoidal_desigual_acumulado.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/interpolaci/303/263n/__init__.py" +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/interpolaci/303/263n/inter_Lagrange.py" +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/interpolaci/303/263n/inter_Newton.py" +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/interpolaci/303/263n/inter_spline_cubica.py" +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/interpolaci/303/263n/inter_spline_lineal.py" +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/interpolaci/303/263n/interpolacion.py" +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ra/303/255ces/__init__.py" +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ra/303/255ces/bisecci/303/263n.py" +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ra/303/255ces/brent.py" +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ra/303/255ces/falsa_posicion.py" +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ra/303/255ces/muller.py" +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ra/303/255ces/newton_raphson.py" +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ra/303/255ces/punto_fijo.py" +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ra/303/255ces/raices.py" +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ra/303/255ces/secante.py" +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ra/303/255ces/secante_modificada.py" +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ra/303/255ces/wegstein.py" +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy/utilidades.py +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy.egg-info/SOURCES.txt +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy.egg-info/dependency_links.txt +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy.egg-info/requires.txt +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/mnspy.egg-info/top_level.txt +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/pyproject.toml +0 -0
- {mnspy-0.9.20 → mnspy-0.9.22}/setup.cfg +0 -0
|
@@ -112,6 +112,9 @@ class Armadura(Elemento):
|
|
|
112
112
|
else:
|
|
113
113
|
return self._obtener_valor_fuerza()
|
|
114
114
|
|
|
115
|
+
def get_fuerza(self):
|
|
116
|
+
return self._obtener_valor_fuerza()
|
|
117
|
+
|
|
115
118
|
def esfuerzo(self):
|
|
116
119
|
if es_notebook():
|
|
117
120
|
indice = [r'$\sigma^{(' + self.nombre + r')}$']
|
|
@@ -120,6 +123,9 @@ class Armadura(Elemento):
|
|
|
120
123
|
else:
|
|
121
124
|
return self._obtener_valor_fuerza() / self._A
|
|
122
125
|
|
|
126
|
+
def get_esfuerzo(self):
|
|
127
|
+
return self._obtener_valor_fuerza() / self._A
|
|
128
|
+
|
|
123
129
|
def mostrar_sistema(self, reducida: bool = False):
|
|
124
130
|
vec_d = np.array(self._k.obtener_etiquetas_desplazamientos(reducida), dtype=object).reshape(-1,1)
|
|
125
131
|
vec_f = np.array(self._obtener_etiquetas_fuerzas(reducida), dtype=object).reshape(-1,1)
|
|
@@ -690,10 +690,6 @@ class Ensamble:
|
|
|
690
690
|
i = 0
|
|
691
691
|
elif n.punto[1] == self._graf['lim_y'][1]:
|
|
692
692
|
i = 2
|
|
693
|
-
elif n.punto[0] == self._graf['lim_x'][0]:
|
|
694
|
-
i = 4
|
|
695
|
-
elif n.punto[0] == self._graf['lim_x'][1]:
|
|
696
|
-
i = 6
|
|
697
693
|
else:
|
|
698
694
|
i = 0
|
|
699
695
|
if len(n.get_soporte()) == 0:
|
|
@@ -825,10 +821,6 @@ class Ensamble:
|
|
|
825
821
|
i = 0
|
|
826
822
|
elif n.punto[1] == self._graf['lim_y'][1]:
|
|
827
823
|
i = 2
|
|
828
|
-
elif n.punto[0] == self._graf['lim_x'][0]:
|
|
829
|
-
i = 4
|
|
830
|
-
elif n.punto[0] == self._graf['lim_x'][1]:
|
|
831
|
-
i = 6
|
|
832
824
|
else:
|
|
833
825
|
i = 0
|
|
834
826
|
if len(n.get_soporte()) == 0:
|
|
@@ -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.22',
|
|
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.20 → mnspy-0.9.22}/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
|
{mnspy-0.9.20 → mnspy-0.9.22}/mnspy/ecuaciones_diferenciales_parciales/mef/triangular_cst.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{mnspy-0.9.20 → mnspy-0.9.22}/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
|