Skip to content

rebco_variables

dx_hts_tape_rebco = None module-attribute

thickness of REBCO layer in tape (m) (iteration variable 138)

dx_hts_tape_copper = None module-attribute

thickness of copper layer in tape (m) (iteration variable 139)

dx_hts_tape_hastelloy = None module-attribute

thickness of Hastelloy layer in tape (m)

dr_hts_tape = None module-attribute

Mean width of tape (m)

dx_hts_tape_total = None module-attribute

thickness of tape, inc. all layers (hts, copper, substrate, etc.) (m)

dia_croco_strand = None module-attribute

Outer diameter of CroCo strand (m)

dia_croco_strand_tape_region = None module-attribute

Inner diameter of CroCo strand tape region (m)

dx_croco_strand_copper = None module-attribute

Thickness of CroCo strand copper tube (m) (iteration variable 158)

copper_rrr = None module-attribute

residual resistivity ratio copper in TF superconducting cable

coppera_m2 = None module-attribute

TF coil current / copper area (A/m2)

coppera_m2_max = None module-attribute

Maximum TF coil current / copper area (A/m2)

copperaoh_m2 = None module-attribute

CS coil current / copper area (A/m2) (sweep variable 61)

copperaoh_m2_max = None module-attribute

Maximum CS coil current / copper area (A/m2)

dx_croco_strand_tape_stack = None module-attribute

Width / thickness of tape stack in CroCo strand (m)

n_croco_strand_hts_tapes = None module-attribute

Number of HTS tapes in CroCo strand

a_croco_strand_rebco = None module-attribute

Area of REBCO in CroCo strand (m2)

a_croco_strand_copper_total = None module-attribute

Area of copper in CroCo strand (includes tapes and outer tube) (m2)

a_croco_strand_hastelloy = None module-attribute

Area of Hastelloy in CroCo strand (m2)

a_croco_strand_solder = None module-attribute

Area of solder in CroCo strand (m2)

a_croco_strand = None module-attribute

Total area of a CroCo strand (m2)

init_rebco_variables()

Initialise the REBCO variables

Source code in process/data_structure/rebco_variables.py
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
def init_rebco_variables():
    """Initialise the REBCO variables"""
    global \
        dx_hts_tape_rebco, \
        dx_hts_tape_copper, \
        dx_hts_tape_hastelloy, \
        dr_hts_tape, \
        dia_croco_strand, \
        dia_croco_strand_tape_region, \
        dx_croco_strand_copper, \
        copper_rrr, \
        coppera_m2_max, \
        dx_hts_tape_total, \
        dx_croco_strand_tape_stack, \
        n_croco_strand_hts_tapes, \
        a_croco_strand_rebco, \
        a_croco_strand_copper_total, \
        a_croco_strand_hastelloy, \
        a_croco_strand_solder, \
        a_croco_strand, \
        coppera_m2, \
        copperaoh_m2_max, \
        copperaoh_m2

    dx_hts_tape_rebco = 1.0e-6
    dx_hts_tape_copper = 100.0e-6
    dx_hts_tape_hastelloy = 50.0e-6
    dr_hts_tape = 4.0e-3
    dia_croco_strand = 0.0
    dia_croco_strand_tape_region = 0.0
    dx_croco_strand_copper = 2.5e-3
    copper_rrr = 100.0
    coppera_m2_max = 1.0e8
    dx_hts_tape_total = 6.5e-5
    dx_croco_strand_tape_stack = 0.0
    n_croco_strand_hts_tapes = 0.0
    a_croco_strand_rebco = 0.0
    a_croco_strand_copper_total = 0.0
    a_croco_strand_hastelloy = 0.0
    a_croco_strand_solder = 0.0
    a_croco_strand = 0.0

    coppera_m2 = 0.0
    copperaoh_m2_max = 1.0e8
    copperaoh_m2 = 0.0