Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
T
thick-casting
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
潘栩锋
thick-casting
Commits
3be7f334
Commit
3be7f334
authored
Mar 08, 2022
by
潘栩锋
🚴
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复 测厚 即时扫描图 Y轴 公差 与产品不一致
parent
d6861dde
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
64 additions
and
56 deletions
+64
-56
AssemblyInfo.cs
...LY.Thick.FilmCasting.UI.Client/Properties/AssemblyInfo.cs
+2
-2
Colors.xaml
...k.FilmCasting/FLY.Thick.FilmCasting.UI/Themes/Colors.xaml
+2
-1
TempScanGraphVm.cs
....FilmCasting.UI/UiModule/TempScanGraph/TempScanGraphVm.cs
+53
-49
TempScanGraphVmUt.cs
...ilmCasting.UI/UiModule/TempScanGraph/TempScanGraphVmUt.cs
+1
-0
filmCastingInstallZipVersionInfo.json
脚本/filmCastingInstallZipVersionInfo.json
+3
-2
版本描述.md
脚本/版本描述.md
+3
-2
No files found.
Project.FLY.Thick.FilmCasting/FLY.Thick.FilmCasting.UI.Client/Properties/AssemblyInfo.cs
View file @
3be7f334
...
...
@@ -51,6 +51,6 @@ using System.Windows;
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("7.5.
1
.0")]
[assembly: AssemblyFileVersion("7.5.
1
.0")]
[assembly: AssemblyVersion("7.5.
5
.0")]
[assembly: AssemblyFileVersion("7.5.
5
.0")]
[assembly: Guid("BD20A921-953E-44CA-8FAB-4619D3CBCD06")]
Project.FLY.Thick.FilmCasting/FLY.Thick.FilmCasting.UI/Themes/Colors.xaml
View file @
3be7f334
...
...
@@ -17,7 +17,8 @@
<!--MahApps.Brushes.Accent-->
<SolidColorBrush x:Key="Brushes.ChartArea0" Color="#CC60A917" />
<!--MahApps.Brushes.ValidationSummary4-->
<SolidColorBrush x:Key="Brushes.ChartArea1" Color="#ccfec007"/>
<!--<SolidColorBrush x:Key="Brushes.ChartArea1" Color="#ccfec007"/>-->
<SolidColorBrush x:Key="Brushes.ChartArea1" Color="Orange"/>
<!--MahApps.Brushes.ValidationSummary2-->
<SolidColorBrush x:Key="Brushes.ChartArea2" Color="#CCCA000C" />
...
...
Project.FLY.Thick.FilmCasting/FLY.Thick.FilmCasting.UI/UiModule/TempScanGraph/TempScanGraphVm.cs
View file @
3be7f334
...
...
@@ -219,35 +219,8 @@ namespace FLY.Thick.FilmCasting.UI.UiModule
profileParam
.
PropertyChanged
+=
ProfileParam_PropertyChanged
;
this
.
PropertyChanged
+=
ScanGraphVm_PropertyChanged
;
bulkDb
.
TempFrameChanged
+=
BulkDb_TempFrameChanged
;
bulkDb
.
GetTempFrame
(
GetTempFrameHandler
,
null
);
}
void
GetTempFrameHandler
(
object
asyncContext
,
object
retData
)
{
BulkDbTempFrameChangedEventArgs
reponse
=
retData
as
BulkDbTempFrameChangedEventArgs
;
Time
=
reponse
.
Time
;
datas
.
Clear
();
if
(
reponse
.
D
!=
null
)
{
for
(
int
i
=
0
;
i
<
reponse
.
StartIndex
;
i
++)
{
datas
.
Add
(
double
.
NaN
);
}
datas
.
AddRange
(
reponse
.
D
);
}
//清除全部数据
Values
.
Clear
();
//更新平均值,它会引起 YFormatter 刷新
UpdateAverage
();
PropertyChanged_Average
();
Values
.
AddRange
(
datas
);
}
protected
void
BulkDb_TempFrameChanged
(
object
sender
,
EventArgs
e
)
{
BulkDbTempFrameChangedEventArgs
reponse
=
e
as
BulkDbTempFrameChangedEventArgs
;
...
...
@@ -328,16 +301,6 @@ namespace FLY.Thick.FilmCasting.UI.UiModule
}
}
protected
void
BulkDb_PropertyChanged
(
object
sender
,
PropertyChangedEventArgs
e
)
{
if
(
e
.
PropertyName
==
nameof
(
FObjBase
.
FObjServiceClient
.
IsConnected
))
{
if
((
bulkDb
as
FObjBase
.
FObjServiceClient
).
IsConnected
)
{
bulkDb
.
GetTempFrame
(
GetTempFrameHandler
,
null
);
}
}
}
protected
void
Graphparam_PropertyChanged
(
object
sender
,
PropertyChangedEventArgs
e
)
{
...
...
@@ -350,24 +313,35 @@ namespace FLY.Thick.FilmCasting.UI.UiModule
NotifyPropertyChanged
(
nameof
(
YFormatter
));
UpdateMaxMinTextAsync
();
}
else
if
(
e
.
PropertyName
==
nameof
(
graphparam
.
IsAutoTarget
))
{
PropertyChanged_IsAutoTarget
();
}
}
protected
void
UpdateY
()
{
double
target
=
this
.
profileParam
.
Target
;
PropertyChanged_IsAutoTarget
();
}
/// <summary>
/// profileParam.Target 变化了,触发
/// </summary>
void
PropertyChanged_IsAutoTarget
()
{
//自动目标值模式 且 已经有平均值
if
(
graphparam
.
IsAutoTarget
&&
(!
double
.
IsNaN
(
Average
)))
{
target
=
Average
;
PropertyChanged_Average
();
}
else
{
Target
=
profileParam
.
Target
;
PropertyChanged_Target
();
}
Target
=
target
;
TolerancePercent
=
profileParam
.
TolerancePercent
;
Tolerance
=
Math
.
Max
(
TolerancePercent
*
Target
,
MIN_TOLERANCE
);
PropertyChanged_Target_Tolerance_YRangePercent
();
}
/// <summary>
/// profileParam.Target 变化了,触发
/// </summary>
void
PropertyChanged_ParamTarget
()
{
//自动目标值模式 且 已经有平均值
...
...
@@ -377,14 +351,39 @@ namespace FLY.Thick.FilmCasting.UI.UiModule
}
Target
=
profileParam
.
Target
;
PropertyChanged_Target
_Tolerance_YRangePercent
();
PropertyChanged_Target
();
}
/// <summary>
/// profileParam.TolerancePercent 变化了,触发
/// </summary>
void
PropertyChanged_ParamTolerancePercent
()
{
TolerancePercent
=
profileParam
.
TolerancePercent
;
PropertyChanged_TolerancePercent
();
}
/// <summary>
/// TolerancePercent 变化了,触发
/// </summary>
void
PropertyChanged_TolerancePercent
()
{
Tolerance
=
Math
.
Max
(
TolerancePercent
*
Target
,
MIN_TOLERANCE
);
PropertyChanged_Target_Tolerance_YRangePercent
();
}
/// <summary>
/// Target 变化了,触发
/// </summary>
void
PropertyChanged_Target
()
{
Tolerance
=
Math
.
Max
(
TolerancePercent
*
Target
,
MIN_TOLERANCE
);
PropertyChanged_Target_Tolerance_YRangePercent
();
}
/// <summary>
/// target 或 tolerance 或 yrangePercent 变化了,触发
/// </summary>
void
PropertyChanged_Target_Tolerance_YRangePercent
()
{
ToleranceYMax
=
Target
+
Tolerance
;
...
...
@@ -395,6 +394,7 @@ namespace FLY.Thick.FilmCasting.UI.UiModule
YMax
=
Target
+
Tolerance
*
graphparam
.
YRangePercent
;
YMin
=
Target
-
Tolerance
*
graphparam
.
YRangePercent
;
}
void
PropertyChanged_YRangePercent
()
{
YMax
=
Target
+
Tolerance
*
graphparam
.
YRangePercent
;
...
...
@@ -410,7 +410,11 @@ namespace FLY.Thick.FilmCasting.UI.UiModule
if
(!
double
.
IsNaN
(
Target
))
//之前有显示范围
{
if
(
Average
<
ToleranceYMax
&&
Average
>
ToleranceYMin
)
double
range
=
YMax
-
YMin
;
double
target
=
(
YMax
+
YMin
)
/
2
;
range
=
range
*
2
/
3
/
2
;
if
(
Math
.
Abs
(
target
-
Average
)<
range
)
{
//变化很小, 不调整显示
return
;
...
...
@@ -418,7 +422,7 @@ namespace FLY.Thick.FilmCasting.UI.UiModule
}
Target
=
Average
;
PropertyChanged_Target
_Tolerance_YRangePercent
();
PropertyChanged_Target
();
}
protected
void
UpdateX
()
...
...
Project.FLY.Thick.FilmCasting/FLY.Thick.FilmCasting.UI/UiModule/TempScanGraph/TempScanGraphVmUt.cs
View file @
3be7f334
...
...
@@ -75,6 +75,7 @@ namespace FLY.Thick.FilmCasting.UI.UiModule
Values
.
AddRange
(
datas
);
UpdateAverage
();
UpdateY
();
UpdateMaxMinText
();
#
endregion
...
...
脚本/filmCastingInstallZipVersionInfo.json
View file @
3be7f334
{
"InstallZipVersion"
:
"7.5.
1
"
,
"InstallZipUrl"
:
"http://server.flyautomation.net:8889/download/流延测厚仪安装包_v7.5.
1_20220305
.7z"
"InstallZipVersion"
:
"7.5.
5
"
,
"InstallZipUrl"
:
"http://server.flyautomation.net:8889/download/流延测厚仪安装包_v7.5.
5_20220308
.7z"
}
\ No newline at end of file
脚本/版本描述.md
View file @
3be7f334
# 流延测厚仪安装包_v7.5.
1_20220305
# 流延测厚仪安装包_v7.5.
5_20220308
## 流延测厚仪客户端 v7.5.
1
## 流延测厚仪客户端 v7.5.
5
1.
添加 支持称重, 支持自动模头
2.
修复 即时图 Y轴 公差没有与产品不一致
## 自动模头服务器 v7.0.0
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment