1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 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 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
| "Transistor": { "name": "Transistor", "description": "晶体管 三极管 FET 晶闸管", "default_location": 0, "default_keywords": "transistor 晶体管", "parent": "Component", "structural": false, "parameter_template": { "vce": { "name": "Vce/Vds", "description": "集电极-发射极电压", "checkbox": false }, "ic": { "name": "Ic/Id", "description": "集电极电流", "checkbox": false }, "vce_sat": { "name": "Vce_sat/Vds_sat", "description": "饱和电压", "checkbox": false } } }, "Connector": { "name": "Connector", "description": "连接器 接插件", "default_location": 0, "default_keywords": "connector 连接器", "parent": "Component", "structural": false, "parameter_template": { "mount_angle": { "name": "Mount Angle", "description": "安装角度", "checkbox": false, "choices": "90°,180°,Other" }, "contact_count": { "name": "Contact Count", "description": "接点数量", "checkbox": false }, "contact_pitch": { "name": "Contact Pitch", "description": "接点间距", "checkbox": false }, "rated_current": { "name": "Rated Current", "description": "额定电流", "checkbox": false }, "rated_voltage": { "name": "Rated Voltage", "description": "额定电压", "checkbox": false } } }, "Switch": { "name": "Switch", "description": "开关 按键", "default_location": 0, "default_keywords": "switch 开关", "parent": "Component", "structural": false, "parameter_template": { "mount_angle": { "name": "Mount Angle", "description": "安装角度", "checkbox": false, "choices": "90°,180°,Other" }, "contact_count": { "name": "Contact Count", "description": "接点数量", "checkbox": false }, "contact_pitch": { "name": "Contact Pitch", "description": "接点间距", "checkbox": false }, "rated_current": { "name": "Rated Current", "description": "额定电流", "checkbox": false }, "rated_voltage": { "name": "Rated Voltage", "description": "额定电压", "checkbox": false } } }, "Relay": { "name": "Relay", "description": "继电器", "default_location": 0, "default_keywords": "relay 继电器", "parent": "Component", "structural": false, "parameter_template": { "rated_voltage": { "name": "Rated Voltage", "description": "额定电压", "checkbox": false }, "rated_current": { "name": "Rated Current", "description": "额定电流", "checkbox": false } } }, "Fuse": { "name": "Fuse", "description": "保险丝 保护器件", "default_location": 0, "default_keywords": "fuse 保险丝", "parent": "Component", "structural": false, "parameter_template": { "rated_current": { "name": "Rated Current", "description": "额定电流", "checkbox": false }, "rated_voltage": { "name": "Rated Voltage", "description": "额定电压", "checkbox": false }, "breaking_capacity": { "name": "Breaking Capacity", "description": "熔断容量", "checkbox": false }, "cold_resistance": { "name": "Cold Resistance", "description": "冷电阻", "checkbox": false } } }, "Transformer": { "name": "Transformer", "description": "变压器", "default_location": 0, "default_keywords": "transformer 变压器", "parent": "Component", "structural": false, "parameter_template": { "transform_ratio": { "name": "Transform Ratio", "description": "变比", "checkbox": false }, "rated_power": { "name": "Rated Power", "description": "额定功率", "checkbox": false } } },
|