*** empty log message ***

This commit is contained in:
Dave Goodwin 2005-01-08 02:39:34 +00:00
parent bd515a947a
commit 6b4a72fdf7
4 changed files with 6 additions and 6 deletions

View file

@ -1,8 +1,8 @@
import os, math, string
from Tkinter import *
from Cantera import *
from Numeric import *
import Numeric
from Cantera.num import *
from Cantera import num
from tkFileDialog import askopenfilename
from GraphFrame import Graph
from DataGraph import DataGraph, plotLimits
@ -295,7 +295,7 @@ class DataFrame(Frame):
if self.ydata[n] <= 0.0:
#print n, self.ydata[n]
self.ydata[n] = 1.0e-20
self.ydata = Numeric.log10(self.ydata)
self.ydata = num.log10(self.ydata)
ylog = 1
self.gdata = []

View file

@ -1,7 +1,7 @@
from Tkinter import *
import math
from Numeric import *
from Cantera.num import *
def plotLimits(ypts, f=0.0, ndiv=5, logscale=0):
"""Return plot limits that"""

View file

@ -1,5 +1,5 @@
from Cantera import GasConstant, OneAtm
from Numeric import zeros
from Cantera.num import zeros
def spdict(phase, x):
nm = phase.speciesNames()

View file

@ -13,10 +13,10 @@ _app_version = '1.0'
from Tkinter import *
import tkMessageBox
import sys, os, string
from Numeric import zeros
# Cantera imports
from Cantera import *
from Cantera.num import zeros
import utilities
from Cantera.gases import IdealGasMix