Changeset 115 for trunk/examples
- Timestamp:
- Oct 23, 2005, 1:58:24 PM (19 years ago)
- Location:
- trunk/examples
- Files:
-
- 1 deleted
- 23 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/examples/app-fermi/2.0/fermi.py
r66 r115 5 5 # to handle I/O for a simple simulator--in this case, one that 6 6 # computes Fermi-Dirac statistics. 7 # 7 8 # ====================================================================== 8 9 # AUTHOR: Michael McLennan, Purdue University 9 # Copyright (c) 2005 Purdue Research Foundation, West Lafayette, IN 10 # Copyright (c) 2004-2005 Purdue Research Foundation 11 # 12 # See the file "license.terms" for information on usage and 13 # redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. 10 14 # ====================================================================== 11 15 -
trunk/examples/app-fermi/2.0/fermi_io.py
r66 r115 7 7 # 8 8 # This part contains the Rappture interface for the simulator. 9 # 9 10 # ====================================================================== 10 11 # AUTHOR: Michael McLennan, Purdue University 11 # Copyright (c) 2005 Purdue Research Foundation, West Lafayette, IN 12 # Copyright (c) 2004-2005 Purdue Research Foundation 13 # 14 # See the file "license.terms" for information on usage and 15 # redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. 12 16 # ====================================================================== 13 17 -
trunk/examples/app-fermi/fortran/fermi.f
r83 r115 4 4 c This simple example shows how to use Rappture within a simulator 5 5 c written in Fortran. 6 c 6 7 c ====================================================================== 7 8 c AUTHOR: Michael McLennan, Purdue University 8 9 c AUTHOR: Derrick Kearney, Purdue University 9 c Copyright (c) 2004-2005 10 c Purdue Research Foundation, West Lafayette, IN 10 c Copyright (c) 2004-2005 Purdue Research Foundation 11 c 12 c See the file "license.terms" for information on usage and 13 c redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. 11 14 c ====================================================================== 15 12 16 program fermi 13 17 IMPLICIT NONE -
trunk/examples/app-fermi/matlab/fermi.m
r75 r115 4 4 % This script represents a legacy application that will be left 5 5 % intact, but wrapped with a Rappture interface. 6 % 6 7 % ====================================================================== 7 8 % AUTHOR: Michael McLennan, Purdue University 8 % Copyright (c) 2004-2005 9 % Purdue Research Foundation, West Lafayette, IN 9 % Copyright (c) 2004-2005 Purdue Research Foundation 10 % 11 % See the file "license.terms" for information on usage and 12 % redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. 10 13 % ====================================================================== 14 11 15 disp('Enter the Fermi level (eV):'); 12 16 Ef = input(' Ef = '); -
trunk/examples/app-fermi/matlab/fermi.tcl
r75 r115 4 4 # This simple example shows how to use Rappture to wrap up a 5 5 # simulator written in Matlab or some other language. 6 # 6 7 # ====================================================================== 7 8 # AUTHOR: Michael McLennan, Purdue University 8 # Copyright (c) 2004-2005 9 # Purdue Research Foundation, West Lafayette, IN 9 # Copyright (c) 2004-2005 Purdue Research Foundation 10 # 11 # See the file "license.terms" for information on usage and 12 # redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. 10 13 # ====================================================================== 11 14 package require Rappture -
trunk/examples/app-fermi/python/fermi.py
r73 r115 6 6 # ====================================================================== 7 7 # AUTHOR: Michael McLennan, Purdue University 8 # Copyright (c) 2004-2005 9 # Purdue Research Foundation, West Lafayette, IN 8 # Copyright (c) 2004-2005 Purdue Research Foundation 9 # 10 # See the file "license.terms" for information on usage and 11 # redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. 10 12 # ====================================================================== 11 13 import Rappture -
trunk/examples/app-fermi/tcl/fermi.tcl
r66 r115 6 6 # ====================================================================== 7 7 # AUTHOR: Michael McLennan, Purdue University 8 # Copyright (c) 2004-2005 9 # Purdue Research Foundation, West Lafayette, IN 8 # Copyright (c) 2004-2005 Purdue Research Foundation 9 # 10 # See the file "license.terms" for information on usage and 11 # redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. 10 12 # ====================================================================== 11 13 package require Rappture -
trunk/examples/c-example/plot.cc
r90 r115 1 // ====================================================================== 2 // Copyright (c) 2004-2005 Purdue Research Foundation 3 // See the file "license.terms" for information on usage and 4 // redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. 5 // ====================================================================== 6 1 7 #include "RpLibrary.h" 2 8 -
trunk/examples/c-example/plotc.c
r104 r115 1 /* 2 * ====================================================================== 3 * Copyright (c) 2004-2005 Purdue Research Foundation 4 * See the file "license.terms" for information on usage and 5 * redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. 6 * ====================================================================== 7 */ 1 8 #include "RpLibraryCInterface.h" 2 9 -
trunk/examples/graph/graph.py
r62 r115 5 5 # to handle I/O for a simple simulator--in this case, one that 6 6 # evaluates an x/y graph 7 # 7 8 # ====================================================================== 8 9 # AUTHOR: Michael McLennan, Purdue University 9 # Copyright (c) 2005 Purdue Research Foundation, West Lafayette, IN 10 # Copyright (c) 2004-2005 Purdue Research Foundation 11 # 12 # See the file "license.terms" for information on usage and 13 # redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. 10 14 # ====================================================================== 11 15 -
trunk/examples/zoo/boolean/boolean.tcl
r69 r115 3 3 # ====================================================================== 4 4 # AUTHOR: Michael McLennan, Purdue University 5 # Copyright (c) 2004-2005 6 # Purdue Research Foundation, West Lafayette, IN 5 # Copyright (c) 2004-2005 Purdue Research Foundation 6 # 7 # See the file "license.terms" for information on usage and 8 # redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. 7 9 # ====================================================================== 8 10 package require Rappture -
trunk/examples/zoo/choice/choice.tcl
r69 r115 3 3 # ====================================================================== 4 4 # AUTHOR: Michael McLennan, Purdue University 5 # Copyright (c) 2004-2005 6 # Purdue Research Foundation, West Lafayette, IN 5 # Copyright (c) 2004-2005 Purdue Research Foundation 6 # 7 # See the file "license.terms" for information on usage and 8 # redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. 7 9 # ====================================================================== 8 10 package require Rappture -
trunk/examples/zoo/cloud/cloud.tcl
r112 r115 3 3 # ====================================================================== 4 4 # AUTHOR: Michael McLennan, Purdue University 5 # Copyright (c) 2004-2005 6 # Purdue Research Foundation, West Lafayette, IN 5 # Copyright (c) 2004-2005 Purdue Research Foundation 6 # 7 # See the file "license.terms" for information on usage and 8 # redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. 7 9 # ====================================================================== 8 10 package require Rappture -
trunk/examples/zoo/curve/curve.tcl
r72 r115 1 1 # ---------------------------------------------------------------------- 2 # EXAMPLE: Rappture < boolean> elements2 # EXAMPLE: Rappture <curve> elements 3 3 # ====================================================================== 4 4 # AUTHOR: Michael McLennan, Purdue University 5 # Copyright (c) 2004-2005 6 # Purdue Research Foundation, West Lafayette, IN 5 # Copyright (c) 2004-2005 Purdue Research Foundation 6 # 7 # See the file "license.terms" for information on usage and 8 # redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. 7 9 # ====================================================================== 8 10 package require Rappture -
trunk/examples/zoo/field/field.tcl
r112 r115 3 3 # ====================================================================== 4 4 # AUTHOR: Michael McLennan, Purdue University 5 # Copyright (c) 2004-2005 6 # Purdue Research Foundation, West Lafayette, IN 5 # Copyright (c) 2004-2005 Purdue Research Foundation 6 # 7 # See the file "license.terms" for information on usage and 8 # redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. 7 9 # ====================================================================== 8 10 package require Rappture -
trunk/examples/zoo/group/group.tcl
r72 r115 1 1 # ---------------------------------------------------------------------- 2 # EXAMPLE: Rappture < log> elements2 # EXAMPLE: Rappture <group> elements 3 3 # ====================================================================== 4 4 # AUTHOR: Michael McLennan, Purdue University 5 # Copyright (c) 2004-2005 6 # Purdue Research Foundation, West Lafayette, IN 5 # Copyright (c) 2004-2005 Purdue Research Foundation 6 # 7 # See the file "license.terms" for information on usage and 8 # redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. 7 9 # ====================================================================== 8 10 package require Rappture -
trunk/examples/zoo/integer/integer.tcl
r69 r115 3 3 # ====================================================================== 4 4 # AUTHOR: Michael McLennan, Purdue University 5 # Copyright (c) 2004-2005 6 # Purdue Research Foundation, West Lafayette, IN 5 # Copyright (c) 2004-2005 Purdue Research Foundation 6 # 7 # See the file "license.terms" for information on usage and 8 # redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. 7 9 # ====================================================================== 8 10 package require Rappture -
trunk/examples/zoo/loader/loader.tcl
r72 r115 1 1 # ---------------------------------------------------------------------- 2 # EXAMPLE: Rappture < string> elements2 # EXAMPLE: Rappture <loader> elements 3 3 # ====================================================================== 4 4 # AUTHOR: Michael McLennan, Purdue University 5 # Copyright (c) 2004-2005 6 # Purdue Research Foundation, West Lafayette, IN 5 # Copyright (c) 2004-2005 Purdue Research Foundation 6 # 7 # See the file "license.terms" for information on usage and 8 # redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. 7 9 # ====================================================================== 8 10 package require Rappture -
trunk/examples/zoo/log/log.tcl
r72 r115 3 3 # ====================================================================== 4 4 # AUTHOR: Michael McLennan, Purdue University 5 # Copyright (c) 2004-2005 6 # Purdue Research Foundation, West Lafayette, IN 5 # Copyright (c) 2004-2005 Purdue Research Foundation 6 # 7 # See the file "license.terms" for information on usage and 8 # redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. 7 9 # ====================================================================== 8 10 package require Rappture -
trunk/examples/zoo/number/number.tcl
r69 r115 3 3 # ====================================================================== 4 4 # AUTHOR: Michael McLennan, Purdue University 5 # Copyright (c) 2004-2005 6 # Purdue Research Foundation, West Lafayette, IN 5 # Copyright (c) 2004-2005 Purdue Research Foundation 6 # 7 # See the file "license.terms" for information on usage and 8 # redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. 7 9 # ====================================================================== 8 10 package require Rappture -
trunk/examples/zoo/phase/phase.tcl
r72 r115 1 1 # ---------------------------------------------------------------------- 2 # EXAMPLE: Rappture < string> elements2 # EXAMPLE: Rappture <phase> elements 3 3 # ====================================================================== 4 4 # AUTHOR: Michael McLennan, Purdue University 5 # Copyright (c) 2004-2005 6 # Purdue Research Foundation, West Lafayette, IN 5 # Copyright (c) 2004-2005 Purdue Research Foundation 6 # 7 # See the file "license.terms" for information on usage and 8 # redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. 7 9 # ====================================================================== 8 10 package require Rappture -
trunk/examples/zoo/string/string.tcl
r69 r115 3 3 # ====================================================================== 4 4 # AUTHOR: Michael McLennan, Purdue University 5 # Copyright (c) 2004-2005 6 # Purdue Research Foundation, West Lafayette, IN 5 # Copyright (c) 2004-2005 Purdue Research Foundation 6 # 7 # See the file "license.terms" for information on usage and 8 # redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. 7 9 # ====================================================================== 8 10 package require Rappture -
trunk/examples/zoo/structure/structure.tcl
r74 r115 1 1 # ---------------------------------------------------------------------- 2 # EXAMPLE: Rappture <str ing> elements2 # EXAMPLE: Rappture <structure> elements 3 3 # ====================================================================== 4 4 # AUTHOR: Michael McLennan, Purdue University 5 # Copyright (c) 2004-2005 6 # Purdue Research Foundation, West Lafayette, IN 5 # Copyright (c) 2004-2005 Purdue Research Foundation 6 # 7 # See the file "license.terms" for information on usage and 8 # redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. 7 9 # ====================================================================== 8 10 package require Rappture
Note: See TracChangeset
for help on using the changeset viewer.