Right mouse click inside the applet to read help file.


Applet Interface

Ripple may be embedded within your own web page with the following HTML tags:

<applet code="Ripple.class" width=320 height=370>
<PARAM NAME="wavelength" VALUE=2.0>
<PARAM NAME="pixPerUnit" VALUE=20>
<PARAM NAME="fps" VALUE=20>
<PARAM NAME="showControls" VALUE=true>
<PARAM NAME="showIntensity" VALUE=true>
<PARAM NAME="animate" VALUE=true>
<PARAM NAME="helpFile" VALUE="RippleHelp.html" >
<PARAM NAME="caption" VALUE="Ripple Tank" >
</APPLET>

where fps, frames per second, may need to be adjusted to produce smooth animation on less powerful computers. The ShowControls parameter is designed to reduce the screen size of the Applet. This parameter allows the HTML programmer to hide the buttons displayed at the bottom of the applet.

Ripple may be scripted using the following Java method calls:

Use the codebase tag if the Ripple.class file is in a different directory than the HTML page that uses the applet. (See source for this page.) All Java packages used by Ripple must be in subdirectories below the Ripple.class file.

Ripple.zip may be downloaded for noncommercial use by students and faculty at accredited not-for-profit educational institutions. The zip file being distribted is uncompresssed. It can be used with the new Netscape Archive tag. (See source code for this page.) The archive tag allows Netscape to download all the necessary files with a single HTTP request to the server. It is much faster than the standard download method which requires a HTTP request for each file. You should, however, keep copies of the uncompressed class files in the class directory so that browers that do not support the archive tag will be able to run the applet.

Ripple was written using Java 1.01. It will be rewritten as a Java "Bean"using the newer (and better) Java event model avaliable in Java 1.1.