Mensaje de error

  • Deprecated function: The each() function is deprecated. This message will be suppressed on further calls en book_prev() (línea 775 de /home1/montes/public_html/drupal/modules/book/book.module).
  • Notice: Trying to access array offset on value of type int en element_children() (línea 6422 de /home1/montes/public_html/drupal/includes/common.inc).
  • Notice: Trying to access array offset on value of type int en element_children() (línea 6422 de /home1/montes/public_html/drupal/includes/common.inc).
  • Notice: Trying to access array offset on value of type int en element_children() (línea 6422 de /home1/montes/public_html/drupal/includes/common.inc).
  • Deprecated function: implode(): Passing glue string after array is deprecated. Swap the parameters en drupal_get_feeds() (línea 394 de /home1/montes/public_html/drupal/includes/common.inc).

Calculo de la divergencia en coordenadas esfericas de un campo vectorial con SAGE

Solapas principales

[adsense:336x280:9156825571]
Calculo de la divergencia del campo vectorial en coordenadas esfericas V=(k/r, 0, 0)  con SAGE:
 
var('r th ph k')
def divergenciaesfericas(F):
    assert(len(F) == 3)
    return ((1/r^2)*diff(r^2*F[0],r) + diff(F[1]*sin(th),th)/(r*sin(th)) + diff(F[2],ph)/(r*sin(th)) ) 
 
F1=vector([k/r,0,0])
divergenciaesfericas(F1)
 
 

Resultado:

\nabla \cdot V=\frac{k}{r^2}
 
Español

Añadir nuevo comentario

Plain text

  • No se permiten etiquetas HTML.
  • Las direcciones de las páginas web y las de correo se convierten en enlaces automáticamente.
  • Saltos automáticos de líneas y de párrafos.
Pin It