예제 #1
0
class Solubility(BaseModel):
    value = StringType()
    units = StringType()
예제 #2
0
class CurieTemperature(BaseModel):
    specifier = StringType()
    value = StringType()
    units = StringType()
예제 #3
0
class AnnealTemp(BaseModel):
    """
    Class for each spin-coating speed in a spin-coating process.
    """
    tempvalue = StringType()
    tempunits = StringType(contextual=True)
예제 #4
0
class AnnealTime(BaseModel):
    """
    Class for each spin-coating time in a spin-coating process.
    """
    timevalue = StringType()
    timeunits = StringType(contextual=True)
예제 #5
0
class SpinSpd(BaseModel):
    """
    Class for each spin-coating speed in a spin-coating process.
    """
    spdvalue = StringType()
    spdunits = StringType(contextual=True)
예제 #6
0
class Ff(BaseModel):
    value = StringType()
    units = StringType()
예제 #7
0
class BoilingPoint(BaseModel):
    value = StringType()
    units = StringType()
예제 #8
0
class Capacity(BaseModel):
    value = StringType()
    units = StringType()
예제 #9
0
class Conv(BaseModel):
    tempvalue = StringType(contextual=True)
    tempunits = StringType(contextual=True)
    convvalue = StringType()
    convtype = StringType(contextual=True)
    convunits = StringType(contextual=True)
    captioninfo = StringType(contextual=True)
    check = StringType(contextual=True)
    catname = StringType(contextual=True)
    captioncatname = StringType(contextual=True)
    comp = StringType(contextual=True)
    unit = StringType(contextual=True)
    flow = StringType(contextual=True)
    flowunit = StringType(contextual=True)
    footflow = StringType(contextual=True)
    footflowunit = StringType(contextual=True)
    pressure = StringType(contextual=True)
    presunits = StringType(contextual=True)
    tofvalue = StringType()
    yieldtest = StringType(contextual=True)
    selectivity = ListType(ModelType(Selectivity, contextual=True),
                           contextual=True)
예제 #10
0
class MeltingPoint(BaseModel):
    value = StringType()
    units = StringType()
예제 #11
0
class Selectivity(BaseModel):
    value = StringType()
    unit = StringType(contextual=True)
예제 #12
0
class Temp(BaseModel):
    value = StringType()
    unit = StringType()
예제 #13
0
class Comp(BaseModel):
    values = ListType(StringType())
    unit = StringType(contextual=True)
예제 #14
0
class CAT(BaseModel):
    name = StringType()
예제 #15
0
class Flow(BaseModel):
    value = StringType()
    unit = StringType(contextual=True)