mnspy 0.9.14__tar.gz → 0.9.15__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.14 → mnspy-0.9.15}/PKG-INFO +1 -1
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_diferenciales_parciales/mef/marco.py +7 -8
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_diferenciales_parciales/mef/viga.py +4 -5
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy.egg-info/PKG-INFO +1 -1
- {mnspy-0.9.14 → mnspy-0.9.15}/setup.py +1 -1
- {mnspy-0.9.14 → mnspy-0.9.15}/LICENSE +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/README.md +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/__init__.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/derivada/__init__.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/derivada/derivada.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/derivada/derivada_discreta.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/derivada/richardson.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_algebraicas_lineales/__init__.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_algebraicas_lineales/cramer.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_algebraicas_lineales/descomposicion_LU.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_algebraicas_lineales/descomposicion_cholesky.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_algebraicas_lineales/ecuaciones_algebraicas_lineales.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_algebraicas_lineales/gauss.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_algebraicas_lineales/gauss_jordan.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_algebraicas_lineales/gauss_sediel.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_algebraicas_lineales/tridiagonal.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_diferenciales_ordinarias/__init__.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_diferenciales_ordinarias/ecuaciones_diferenciales_ordinarias.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_diferenciales_ordinarias/euler.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_diferenciales_ordinarias/heun.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_diferenciales_ordinarias/punto_medio.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_diferenciales_ordinarias/runge_kutta.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_diferenciales_parciales/__init__.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_diferenciales_parciales/ecuaciones_diferenciales_parciales.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_diferenciales_parciales/liebmann.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_diferenciales_parciales/mdf/__init__.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_diferenciales_parciales/mdf/mdf.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_diferenciales_parciales/mef/__init__.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_diferenciales_parciales/mef/armadura.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_diferenciales_parciales/mef/barra.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_diferenciales_parciales/mef/ensamble.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_diferenciales_parciales/mef/mef.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_diferenciales_parciales/mef/resorte.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_diferenciales_parciales/mef/triangular_cst.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_diferenciales_parciales/mvf/__init__.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_diferenciales_parciales/mvf/mvf.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ecuaciones_diferenciales_parciales/mvf/volumen_finito.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/integrales/__init__.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/integrales/cuadratura_adaptativa.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/integrales/gauss_legendre.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/integrales/integral.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/integrales/romberg.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/integrales/simpson_1_3.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/integrales/simpson_3_8.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/integrales/trapezoidal.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/integrales/trapezoidal_desigual.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/integrales/trapezoidal_desigual_acumulado.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/interpolaci/303/263n/__init__.py" +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/interpolaci/303/263n/inter_Lagrange.py" +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/interpolaci/303/263n/inter_Newton.py" +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/interpolaci/303/263n/inter_spline_cubica.py" +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/interpolaci/303/263n/inter_spline_lineal.py" +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/interpolaci/303/263n/interpolacion.py" +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ra/303/255ces/__init__.py" +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ra/303/255ces/bisecci/303/263n.py" +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ra/303/255ces/brent.py" +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ra/303/255ces/falsa_posicion.py" +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ra/303/255ces/muller.py" +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ra/303/255ces/newton_raphson.py" +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ra/303/255ces/punto_fijo.py" +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ra/303/255ces/raices.py" +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ra/303/255ces/secante.py" +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ra/303/255ces/secante_modificada.py" +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/ra/303/255ces/wegstein.py" +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy/utilidades.py +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy.egg-info/SOURCES.txt +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy.egg-info/dependency_links.txt +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy.egg-info/requires.txt +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/mnspy.egg-info/top_level.txt +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/pyproject.toml +0 -0
- {mnspy-0.9.14 → mnspy-0.9.15}/setup.cfg +0 -0
|
@@ -708,8 +708,8 @@ class Marco(Elemento):
|
|
|
708
708
|
return lista_x, lista_m, lista_p
|
|
709
709
|
|
|
710
710
|
def _obtener_arrays_angulos(self, n_puntos: int = 100):
|
|
711
|
-
x = sp.symbols('x'
|
|
712
|
-
f = self.ecuacion_de_giro()
|
|
711
|
+
x = sp.symbols('x')
|
|
712
|
+
f = self.ecuacion_de_giro()
|
|
713
713
|
x_1 = 0.0
|
|
714
714
|
x_2 = self._L
|
|
715
715
|
lista_x = np.linspace(x_1, x_2, n_puntos)
|
|
@@ -1054,12 +1054,11 @@ class Marco(Elemento):
|
|
|
1054
1054
|
else:
|
|
1055
1055
|
desplazamiento = np.hstack((desplazamiento, d_i))
|
|
1056
1056
|
b = np.array(desplazamiento).reshape(-1, 1)
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1057
|
+
# Si hay una rotula en el nodo derecho, se ajusta el ángulo
|
|
1058
|
+
if self._nodo_j.es_rotula:
|
|
1059
|
+
b[5] = (self._fuerzas_j[2] * self._L / self._E - np.matmul(np.array(
|
|
1060
|
+
[[- 6 * self._I * self._s / self._L, 6 * self._I * self._c / self._L, 2 * self._I,
|
|
1061
|
+
6 * self._I * self._s / self._L, -6 * self._I * self._c / self._L]]), b[0:5, ])) / 4 / self._I
|
|
1063
1062
|
return b
|
|
1064
1063
|
|
|
1065
1064
|
def mostrar_sistema(self, reducida: bool = False):
|
|
@@ -720,11 +720,10 @@ class Viga(Elemento):
|
|
|
720
720
|
else:
|
|
721
721
|
desplazamiento = np.hstack((desplazamiento, d_i))
|
|
722
722
|
b = np.array(desplazamiento).reshape(-1, 1)
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
# sistema global y esta función solo debe recolectarlos.
|
|
723
|
+
# Si hay una rotula en el nodo derecho, se ajusta el ángulo
|
|
724
|
+
if self._nodo_j.es_rotula:
|
|
725
|
+
b[3] = (self._fuerzas_j[1] * self._L ** 3 / self._E / self._I - np.matmul(np.array(
|
|
726
|
+
[[6 * self._L, 2 * self._L ** 2, - 6 * self._L]]), b[0:3, ])) / 4 / self._L ** 2
|
|
728
727
|
return b
|
|
729
728
|
|
|
730
729
|
def __obtener_path_elemento(self, espesor: float) -> Path:
|
|
@@ -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.15',
|
|
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.14 → mnspy-0.9.15}/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.14 → mnspy-0.9.15}/mnspy/ecuaciones_diferenciales_parciales/mef/triangular_cst.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{mnspy-0.9.14 → mnspy-0.9.15}/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
|