数据与代码 色度场
reset #开始新的作图任务
unset key #不需要标题
set size ratio -1 # x-y坐标设置为等刻度
# 设置颜色条
set cblabel 'Vortex' font "times new roman,14" #色度条label
set colorbox #显示色度刻度
##设置显示的坐标范围
set xrange [-1:41]
set yrange [-1:7]
# 设置色彩映射
set cbrange [-3:3] #设置色度的最大最小范围
set palette defined ( 0 "blue", 1 "green", 2 "yellow", 3 "red" ) # 根据需要定义颜色范围
#输出PNG格式图片设置
set terminal png size 1200,300
set output 'D:/2025/IB_SPH_Plaque/CDCL/PNG/plot.png' ###输出的文件名
#画出曲线 #every参数 1行间隔,2block间隔, 3起始行,4起始block, 5终止行,6终止block
#block是text数据中的数据块,用空行隔开,第一块标号为0, 第二块为1,依次类推
#us=using w=with p=points ps=pointsize pt=pointstyle lc=linepointclolor
plot 'D:/2025/IB_SPH_Plaque/CDCL/Pdata.txt' us 1:2:9 every 1:1:1:2::2 w p ps 0.2 pt 7 palette,\
'D:/2025/IB_SPH_Plaque/CDCL/Pdata.txt' us 1:2:9 every 1:1:1:0::1 w p ps 0.2 pt 7 lc rgb "black"
unset output #释放输出操作