Программа Python Excel
Моя программа, показанная ниже, это та, которая читает данные из файла CSV и импортирует их в PSSE
, PSSE
программа моделирования потока мощности Программа у меня работает.
Моя следующая цель - прочитать новые данные из новых столбцов, которые я поместил в файл Excel COLUMNS[G to L]
, Эти данные я пытаюсь внедрить в эту функцию psspy.two_winding_chng(from_busnum, to_busnum,VMAX,VMIN,'character value')
Столбцы от G до K расположены в порядке, аналогичном значению функции. Последний параметр должен быть реализован как строковое значение. Еще одна вещь - это чтение переменной в Excel и передача ее в виде строки.
Наконец, моя цель состоит в том, чтобы прочитать данные в столбцах G-L, основываясь на имеющейся у меня программе, где требуются "год" и "местоположение", и распечатать столбцы B – E. Есть ли способ сделать это? Также в столбце L этот столбец представляет данные за первый, второй, третий год и т. Д.
Есть ли способ связать столбец L и столбец A. Я не могу использовать модули xlrd, pandas или любые другие, это единственный модуль, установленный на школьном компьютере. Лист Excel опубликован. Столбцы от A до L описаны как:"year","busnum","busname","change","tla","location","from","to","max","min", 'character value', "year_linkup"
, Мой лист CSV размещен здесь.[Лист Excel][1]
import os, sys
PSSE_LOCATION = r "C:\Program Files (x86)\PTI\PSSE33\PSSBIN"
sys.path.append(PSSE_LOCATION)
os.environ['PATH'] = os.environ['PATH'] + ';' + PSSE_LOCATION
import psspy
import redirect
import csv
psspy.throwPsseExceptions = True
from Tkinter
import *
import tkFileDialog
import tkSimpleDialog
import tkMessageBox
root = Tk()
tkMessageBox.showinfo("Welcome", "Please select case: ")
root.fileName = tkFileDialog.askopenfilename(filetypes = (("PSSE CASES",
"*.sav"), ("PSSE CASES", "*.raw*")))
STUDY_CASE = root.fileName
psspy.psseinit(10000)
psspy.case(STUDY_CASE)
LOAD_GEN_DATAFILE = 'C:\Users\RoszkowskiM\Documents\Working_Program\CSV.csv'
# read the entire CSV into Python.
data = list(csv.reader(open(LOAD_GEN_DATAFILE)))
mydict = {}
for row in data:
year, busnum, busname, change, tla, location = row[0: 6]# convert the types from string to Python numbers
# If this is a year not seen before, add it to the dictionary
if year not in mydict:
mydict[year] = {}
busses_in_year = mydict[year]
if location not in busses_in_year:
busses_in_year[location] = []
# Add the bus to the list of busses that stop at this location
busses_in_year[location].append((busnum, busname, change))
year = raw_input("Please Select Year of Study: ")
print("\n")
commands = ["Millwood-Buchanan", "Astoria-East-Corona", "Bronx",
"DUNWOODIE-North-Sherman_Creek",
"Vernon", "Greenwood-
StatenIsland ","
West_49th ","
East_13th ","
Staten_Island ","
East_River ",
"East_View", "DUNWOODIE-SOUTH", "Corona-Jamaica", "Astoria-East-Corona-
Jamaica ",
"Astoria-West-Queensbridge-Vernon", "Astoria-West-Queensbridge"
]
max_columns = 50
for index, commands in enumerate(commands):
stars_amount = max(max_columns - len(commands), 0)
row = "# {} {}({})".format(commands, "." * stars_amount, index + 1)
print(row)
location = raw_input(" \n The list above show the TLA Pockets as well as the ID numbers assigned to them ()\n\n Please enter the ID #: ")
print("\n")
# assume CSV has columns as described in the doc string
if year in mydict and location in mydict[year]:
busses_in_year = mydict[year]
print("Here are all the busses at that location for that year and the new LOAD TOTAL: ")
print("\n")
for busnum, busname, change in busses_in_year[location]:
change = float(change)
busnum = int(busnum)
print('Bus #: %d' % busnum, 'Area Station: %s' % busname, 'New_load: %d MW' % change)
psspy.bsys(1, 0, [0.0, 0.0], 0, [], 1, [busnum], 0, [], 0, [])
psspy.scal_2(1, 0, 1, [0, 0, 0, 0, 0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0])
psspy.scal_2(0, 1, 2, [0, 1, 0, 1, 0], [change, 0.0, 0, -.0])