2018-10-12 01:03:05 +02:00
|
|
|
from flask_table import *
|
|
|
|
|
|
|
|
|
|
class characterization_corners(Table):
|
2018-10-31 05:37:30 +01:00
|
|
|
"""
|
|
|
|
|
Set up characterization corners table columns and title information
|
|
|
|
|
"""
|
2018-10-12 01:03:05 +02:00
|
|
|
corner_name = Col('Corner Name')
|
|
|
|
|
process = Col('Process')
|
|
|
|
|
power_supply = Col('Power Supply')
|
|
|
|
|
temperature = Col('Temperature')
|
|
|
|
|
library_name_suffix = Col('Library Name Suffix')
|
|
|
|
|
|
|
|
|
|
class characterization_corners_item(object):
|
2018-10-31 05:37:30 +01:00
|
|
|
"""
|
|
|
|
|
Defines the contents of a charcaterization corner table row
|
|
|
|
|
"""
|
2018-10-12 01:03:05 +02:00
|
|
|
def __init__(self, corner_name, process, power_supply, temperature, library_name_suffix):
|
|
|
|
|
self.corner_name = corner_name
|
|
|
|
|
self.process = process
|
|
|
|
|
self.power_supply = power_supply
|
|
|
|
|
self.temperature = temperature
|
|
|
|
|
self.library_name_suffix = library_name_suffix
|
|
|
|
|
|