This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #content a.metadata | |
| { | |
| color:#006699; | |
| cursor:help; | |
| } | |
| #content a.description | |
| { | |
| color:#006699; | |
| cursor:help; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <script type="text/javascript" src="http://static.cybercommons.org/js/jquery-1.7.2.min.js"></script> | |
| <script type="text/javascript" src="http://static.cybercommons.org/js/jquery.flot.js"></script> | |
| <script type="text/javascript" src="http://static.cybercommons.org/js/jquery.flot.time.js"></script> | |
| </head> | |
| <style> | |
| .placeholder{ | |
| width:800px; | |
| height:540px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| from numpy import * | |
| def readobs(filename,headlen=1): | |
| "Read the observational file for the TECO model" | |
| obs=loadtxt(filename,skiprows=headlen) | |
| return obs | |
| def readinit(filename,headlen=0): | |
| "Read initial conditions for TECO model" | |
| initcon=loadtxt(filename,skiprows=headlen) |
NewerOlder