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 del rotacional de un campo vectorial en coordenadas esfericas con SAGE

Solapas principales

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

Resultado:

 
\nabla \times \bar{V} = \left(0,\,0,\,0\right)   El campo vectorial es irrotacional
 
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