S.U.P.E.R. Archivo HP 200LX
← Volver al catálogo

DiffEQ Solver

Versión 2.6 · Keith Briggs

Descargar 139.7 KB

Descripción

The HP Palmtop Paper ODE -A program for the interactive solution of systems of ordinary differential equations IBM PC version 2.6 Keith Briggs PO Box 75 Heidelberg West 3081 Australia RESTRICTIONS: No saving of ODE files. No sixth order Runge-Kutta method. No Bulirsch-Stoer method. No fixed step size. No transient steps. No printer support. No mouse support. ODE solves numerically initial value problems for systems of ordinary differential equations such as arise in all branches of science. The solution is presented graphically or as a table of values. ODE contains a text editor for manipulating the equations. It is suitable for teaching and small research problems.

Ficha técnica

Fichero
ode26.zip
Tamaño
139.7 KB
Formato
.zip
Año
1992
Alta en S.U.P.E.R.
1999-10-26
Ficheros dentro
37
Autor
Keith Briggs
Ruta
anonftp/pub/ode26.zip

Cómo instalarlo

Qué enviar al palmtop ahorras 28.7 KB

Estos son los ficheros que necesitas. Puedes enviarlos desde el contenido del paquete.

  • INSTALL.EXE → A:\SOFT programa de DOS 34.0 KB
  • ODE.EXE → A:\SOFT programa de DOS 176.2 KB

No hace falta llevar al palmtop README, ODE25.DOC, PENDULUM.ODE, AIRY.ODE, BINARY.ODE, DUFFING.ODE, EULER.ODE, SINE.ODE y 27 más: son manuales, código fuente o material de apoyo. Léelos aquí y ahórrate 28.7 KB en un disco de 1 MB.

Pasos
  1. Copia INSTALL.EXE, ODE.EXE a A:\SOFT. Son programas de DOS: se ejecutan desde el icono DOS, o añadiendo A:\SOFT al PATH de C:\AUTOEXEC.BAT para poder llamarlos por su nombre.

Deducido del contenido del paquete y de las convenciones del 200LX. Se instala en A: a propósito: C: es un disco RAM y cada byte ahí resta memoria al sistema.

Instrucciones del autor
INSTALLATION

   To install the program on a hard disk, type the following at the DOS
prompt:

cd\
a:install

and follow the directions on the screen.  This will install the main program,
and several sample programs. (These have the extension .ODE)


GETTING STARTED

   Type ODE at the DOS prompt to start the program.   The ODE main menu will
appear.


Try the following:

F3
    (to start an ODE file.)

firsttry
    (ODE will create a new file of this name, because one does not
     currently exist.  ODE will then place you in the text editor.
     Enter the following text:)

# exponential growth
y  = 1
a  = 1
y' = a*y
<Esc>

    (Pressing the escape key quits the editor and compiles the program.
     If you have made any errors ODE will place you back in the editor.
     Press <Esc> and correct the error.

    This system has the solution y(t)=exp(at).  The first equation sets the
    initial value of y, the second sets the parameter a, the third defines the
    differential equation.  The first line is a comment.  Spaces are ignored,
    so you may use them freely to make the equations more readable.)

F4
   (i.e. solve. This solves the equation over the default range (0,1).)

any key
   (to exit from graph mode)

F9
   (to examine the current values of the variables. Y should be
    e=2.7182818...)

   (to edit your program. Change line 3 to a=1, 0.5, 0.2. Use <Esc> to quit
   the editor.)

F4
   (The solution will now be graphed with the three different values of a.)



THE MAIN MENU

The most important main menu options are the following:

E - invokes the built-in text Editor.

F - File submenu.
    L allows loading a previously created File, or creating a new file if the
    name entered is not in the default directory.

F3 - Loads a file into the editor.

…

Extracto literal de ODE25.DOC, tal cual venía en el paquete.

Enviar a mi palmtop

El palmtop tiene que quedar esperando antes de pulsar el botón, o la transferencia fallará. Es él quien avisa de que está listo, no al revés.

En el palmtop

  1. Conecta el cable serie entre el palmtop y el ordenador.
  2. Abre Data Comm y ve a Menu → Connect → Settings. Ajusta: 9600 baudios, 8 bits de datos, paridad None, 1 bit de parada.
  3. Vuelve al menú y entra en Menu → File → Receive, con el protocolo Zmodem. El palmtop se queda esperando: déjalo así.

En el ordenador

  1. Usa Chrome (o Edge / Opera). Firefox y Safari no pueden abrir el puerto serie, y ningún navegador móvil tampoco.
  2. Averigua cuál es tu puerto: si no lo tienes claro, despliega la ayuda de aquí abajo.
  3. Pulsa el botón y selecciónalo en la ventana que abre Chrome.
¿Cómo sé cuál es mi puerto?

Linux — tu adaptador USB-serie será /dev/ttyUSB0 o /dev/ttyACM0. Los /dev/ttyS0ttyS31 son puertos heredados de la placa base: el núcleo los lista aunque no exista ninguno, así que casi nunca son el tuyo. Para salir de dudas:

ls -l /dev/serial/by-id/

Sale el fabricante y el modelo, y a qué ttyUSB* apunta. Si no aparece nada, desenchufa y vuelve a enchufar el cable y mira dmesg | tail: verás una línea del estilo «ch341-uart converter now attached to ttyUSB0».

Permisos: en Debian y derivados tu usuario debe estar en el grupo dialout o el puerto no se abrirá. Compruébalo con groups, y si falta:

sudo usermod -aG dialout $USER

Hay que cerrar la sesión y volver a entrar para que surta efecto.

Windows — Administrador de dispositivos → Puertos (COM y LPT). Tu adaptador aparece como COM3, COM4… Si aparece con un triángulo amarillo, te falta el driver del chip (FTDI, Prolific o CH340 según el cable).

macOSls /dev/cu.*; tu adaptador será algo como /dev/cu.usbserial-A50285BI. Usa siempre el cu., no el tty..

El 200LX no lleva un conector serie estándar: necesitas el cable de conectividad de HP (el F1015A o un equivalente) y, salvo que tu ordenador tenga puerto serie de verdad, un adaptador USB-serie detrás.