-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path教程.txt
More file actions
68 lines (60 loc) · 1.6 KB
/
Copy path教程.txt
File metadata and controls
68 lines (60 loc) · 1.6 KB
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
'#'后面的内容请直接忽略不要写进去包括符号'#'
如果有±请使用此符号(±),不要写+-
管子数据格式:
{
"name": "管子型号(如果是特级管请直接写,特级管需要分开写,如6Z4M)",
"maker": "生产厂商(品牌),国内管如果没特殊要求可以直接写国内",
"type": "管子类型,如旁热式阴极三极管",
"use": "手册上写的管子主要用途,请勿自己编写",
"args": { #管子参数,示例:
"Ua": "100V",
"Uf": "6.3v",
"If": "100±50mA"
},
"supplement": [ #注释补充
{
"to": "Ua", #指定项
"content": "qmax=22%, τmax=18uS时" #内容
}
],
#以下内容只有在有特殊翻译名称用到
"translation": {
"Ua": "最大阳极电压振幅", #"目标名": "值"
},
#图片资料
"imgs": [
{
"name": "屏栅特性曲线", #图片名
"path": "./imgs/xxxx" #路径
}
]
}
#写好管子数据后新建任意名称文件,类型为json,如tube.json,然后写以下格式,不要做任何修改!!
#把以下内容粘贴进去
{
"tube_list": [
]
}
#把你写好的管子数据复制到tube_list里面,如:
{
"tube_list": [
{
#管子数据
}
]
}
#tube_list里面可以有多个管子数据,如:
{
"tube_list": [
{
#管子数据1
},
{
#管子数据2
},
{
#管子数据3
}
]
}
#提交之前请务必保证数据准确!!