示例#1
0
# -*- Python -*-
#
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#
#                               Alex Dementsov
#                      California Institute of Technology
#                        (C) 2010  All Rights Reserved
#
# {LicenseText}
#
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#

# See: http://dev.danse.us/trac/EngDiffSimulation/browser/SMARTSsimulation/trunk/SMARTS/parsers/psd_tew_monitor_parser.py
from psd_tew_monitor_parser import PSD_TEW_monitorParser

p = PSD_TEW_monitorParser()

p.parse("tc.txt")
p.distToFile("tc_plot.txt", 0, 0)

p.parse("wc.txt")
p.distToFile("wc_plot.txt", 0, 0)

__date__ = "$Jan 14, 2011 3:35:33 PM$"
示例#2
0
# -*- Python -*-
#
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#
#                               Alex Dementsov
#                      California Institute of Technology
#                        (C) 2010  All Rights Reserved
#
# {LicenseText}
#
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#

# See: http://dev.danse.us/trac/EngDiffSimulation/browser/SMARTSsimulation/trunk/SMARTS/parsers/psd_tew_monitor_parser.py
from psd_tew_monitor_parser import PSD_TEW_monitorParser

p   = PSD_TEW_monitorParser()

p.parse("tc.txt")
p.distToFile("tc_plot.txt", 0, 0)

p.parse("wc.txt")
p.distToFile("wc_plot.txt", 0, 0)

__date__ = "$Jan 14, 2011 3:35:33 PM$"


示例#3
0
#
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#
#                               Alex Dementsov
#                      California Institute of Technology
#                        (C) 2010  All Rights Reserved
#
# {LicenseText}
#
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#

# See: http://dev.danse.us/trac/EngDiffSimulation/browser/SMARTSsimulation/trunk/SMARTS/parsers/psd_tew_monitor_parser.py
from psd_tew_monitor_parser import PSD_TEW_monitorParser

p   = PSD_TEW_monitorParser()

RESULT = "results/ssd4_1"

p.parse("%s/tt.txt" % RESULT)
p.distToFile("%s/tt_plot.txt" % RESULT, 0, 0)

p.parse("%s/tc.txt" % RESULT)
p.distToFile("%s/tc_plot.txt" % RESULT, 0, 0)

p.parse("%s/tb.txt" % RESULT)
p.distToFile("%s/tb_plot.txt" % RESULT, 0, 0)

p.parse("%s/wt.txt" % RESULT)
p.distToFile("%s/wt_plot.txt" % RESULT, 0, 0)
示例#4
0
#
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#
#                               Alex Dementsov
#                      California Institute of Technology
#                        (C) 2010  All Rights Reserved
#
# {LicenseText}
#
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#

# See: http://dev.danse.us/trac/EngDiffSimulation/browser/SMARTSsimulation/trunk/SMARTS/parsers/psd_tew_monitor_parser.py
from psd_tew_monitor_parser import PSD_TEW_monitorParser

p   = PSD_TEW_monitorParser()

p.parse("tt.txt")
p.distToFile("tt_plot.txt", 0, 0)

p.parse("tc.txt")
p.distToFile("tc_plot.txt", 0, 0)

p.parse("tb.txt")
p.distToFile("tb_plot.txt", 0, 0)

p.parse("wt.txt")
p.distToFile("wt_plot.txt", 0, 0)

p.parse("wc.txt")
p.distToFile("wc_plot.txt", 0, 0)