Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hemei
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
潘栩锋
hemei
Commits
45b260fc
Commit
45b260fc
authored
Jun 28, 2022
by
潘栩锋
🚴
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复 自动风环会由于当前旋转时间不动, 显示“等待:旋转角度或膜距离改变”
parent
bdb09470
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
30 additions
and
26 deletions
+30
-26
PgHeatAnalyseVm.cs
...edbackRenZiJia.UI.Client/PgHeatAnalyse/PgHeatAnalyseVm.cs
+10
-9
AssemblyInfo.cs
...FLY.FeedbackRenZiJia.UI.Server/Properties/AssemblyInfo.cs
+2
-2
HeatBuf.cs
...Y.FeedbackRenZiJia/FLY.FeedbackRenZiJia/Server/HeatBuf.cs
+7
-4
HeatCell.cs
....FeedbackRenZiJia/FLY.FeedbackRenZiJia/Server/HeatCell.cs
+6
-6
AssemblyInfo.cs
...LY.Thick.Blowing.UI.Fix.Client/Properties/AssemblyInfo.cs
+2
-2
ScanGraphItemParam.cs
...Thick.Blowing.UI/UiModule/ScanGraph/ScanGraphItemParam.cs
+1
-1
AssemblyInfo.cs
...LY.Thick.BlowingScan.UI.Client/Properties/AssemblyInfo.cs
+2
-2
No files found.
Project.FLY.FeedbackRenZiJia/FLY.FeedbackRenZiJia.UI.Client/PgHeatAnalyse/PgHeatAnalyseVm.cs
View file @
45b260fc
...
@@ -279,18 +279,19 @@ namespace FLY.FeedbackRenZiJia.UI.Client
...
@@ -279,18 +279,19 @@ namespace FLY.FeedbackRenZiJia.UI.Client
return
false
;
return
false
;
if
(
feedback
.
NBolts
!=
ucThickHeatVms
[
0
].
frame
.
Thicks
.
Count
())
if
(
feedback
.
NBolts
!=
ucThickHeatVms
[
0
].
frame
.
Thicks
.
Count
())
return
false
;
return
false
;
if
(
ucThickHeatVms
[
0
].
frame
.
FilmLength
!=
ucThickHeatVms
[
1
].
frame
.
FilmLength
)
return
false
;
//膜距离不同不能比较
if
(
BType
!=
BlowingType
.
Fix
)
{
//if (Math.Abs(ucThickHeatVms[0].frame.FilmLength - ucThickHeatVms[1].frame.FilmLength) > 1)
//{
if
(
ucThickHeatVms
[
0
].
frame
.
RAngle
!=
ucThickHeatVms
[
1
].
frame
.
RAngle
)
// //偏差大于1m
return
false
;
//扫描架,追边360, 旋转角度不能改变
// return false;//膜距离不同不能比较
}
//
}
//if (Math.Abs(ucThickHeatVms[0].frame.RAngle - ucThickHeatVms[1].frame.RAngle) > 20)
//{
// //偏差大于20°
// return false;//膜距离不同不能比较
//}
return
true
;
return
true
;
}
}
class
CallDiffResult
class
CallDiffResult
...
...
Project.FLY.FeedbackRenZiJia/FLY.FeedbackRenZiJia.UI.Server/Properties/AssemblyInfo.cs
View file @
45b260fc
...
@@ -51,7 +51,7 @@ using System.Windows;
...
@@ -51,7 +51,7 @@ using System.Windows;
// 可以指定所有这些值,也可以使用“内部版本号”和“修订号”的默认值,
// 可以指定所有这些值,也可以使用“内部版本号”和“修订号”的默认值,
// 方法是按如下所示使用“*”:
// 方法是按如下所示使用“*”:
// [assembly: AssemblyVersion("1.0.*")]
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("7.
1.0.2
")]
[assembly: AssemblyVersion("7.
3.0.3
")]
[assembly: AssemblyFileVersion("7.
1.0.2
")]
[assembly: AssemblyFileVersion("7.
3.0.3
")]
[assembly: Guid("32104657-86E9-4380-9113-606589E6D812")]
[assembly: Guid("32104657-86E9-4380-9113-606589E6D812")]
Project.FLY.FeedbackRenZiJia/FLY.FeedbackRenZiJia/Server/HeatBuf.cs
View file @
45b260fc
...
@@ -383,11 +383,14 @@ namespace FLY.FeedbackRenZiJia.Server
...
@@ -383,11 +383,14 @@ namespace FLY.FeedbackRenZiJia.Server
}
}
var
d_last
=
mData
.
Last
();
var
d_last
=
mData
.
Last
();
if
(
d
.
thickHeat
.
RPeriod
!=
d_last
.
thickHeat
.
RPeriod
)
{
{
//旋转时间不同,无法比较
double
sec_delta
=
Math
.
Abs
(
d
.
thickHeat
.
RPeriod
.
TotalSeconds
-
d_last
.
thickHeat
.
RPeriod
.
TotalSeconds
);
Stability
=
STABILITY
.
ERROR_PARAM_CHANGED
;
if
(
sec_delta
/
d_last
.
thickHeat
.
RPeriod
.
TotalSeconds
>
0.1
)
goto
_error
;
{
//旋转时间不同,无法比较
Stability
=
STABILITY
.
ERROR_ROTATE_CHANGED
;
goto
_error
;
}
}
}
if
(
d
.
thickHeat
.
RAngle
!=
d_last
.
thickHeat
.
RAngle
)
if
(
d
.
thickHeat
.
RAngle
!=
d_last
.
thickHeat
.
RAngle
)
...
...
Project.FLY.FeedbackRenZiJia/FLY.FeedbackRenZiJia/Server/HeatCell.cs
View file @
45b260fc
...
@@ -56,7 +56,7 @@ namespace FLY.FeedbackRenZiJia.Server
...
@@ -56,7 +56,7 @@ namespace FLY.FeedbackRenZiJia.Server
/// <summary>
/// <summary>
/// 厚度控制线 , 厚度% 大于 厚度控制线 自动才会加热控制
/// 厚度控制线 , 厚度% 大于 厚度控制线 自动才会加热控制
/// </summary>
/// </summary>
public
double
CtrlLine
{
get
;
set
;
}
=
2
;
public
double
CtrlLine
{
get
;
set
;
}
=
3
;
/// <summary>
/// <summary>
/// 最大加热量 默认100%
/// 最大加热量 默认100%
...
@@ -66,12 +66,12 @@ namespace FLY.FeedbackRenZiJia.Server
...
@@ -66,12 +66,12 @@ namespace FLY.FeedbackRenZiJia.Server
/// <summary>
/// <summary>
/// 分级控制线
/// 分级控制线
/// </summary>
/// </summary>
public
LvCtrlLine
[]
LvCtrlLines
{
get
;
set
;
}
public
LvCtrlLine
[]
LvCtrlLines
{
get
;
set
;
}
=
new
LvCtrlLine
[]
{
new
LvCtrlLine
()
{
CtrlLine
=
1
,
Mix
=
2
}
};
/// <summary>
/// <summary>
/// 对厚度数据横向平滑 单位加热棒数。 特别的当Smooth = ChannelCnt/2 就是膜泡的偏心度
/// 对厚度数据横向平滑 单位加热棒数。 特别的当Smooth = ChannelCnt/2 就是膜泡的偏心度
/// </summary>
/// </summary>
public
int
ThickSmoothRange
{
get
;
set
;
}
=
10
;
public
int
ThickSmoothRange
{
get
;
set
;
}
=
6
;
#
endregion
#
endregion
#
region
状态
#
region
状态
...
@@ -1011,12 +1011,12 @@ namespace FLY.FeedbackRenZiJia.Server
...
@@ -1011,12 +1011,12 @@ namespace FLY.FeedbackRenZiJia.Server
/// <summary>
/// <summary>
/// 分级控制线
/// 分级控制线
/// </summary>
/// </summary>
public
LvCtrlLine
[]
LvCtrlLines
;
public
LvCtrlLine
[]
LvCtrlLines
=
new
LvCtrlLine
[]
{
new
LvCtrlLine
()
{
CtrlLine
=
1
,
Mix
=
2
}
}
;
/// <summary>
/// <summary>
/// 对厚度数据横向平滑 单位加热棒数。 特别的当Smooth = ChannelCnt/2 就是膜泡的偏心度
/// 对厚度数据横向平滑 单位加热棒数。 特别的当Smooth = ChannelCnt/2 就是膜泡的偏心度
/// </summary>
/// </summary>
public
int
ThickSmoothRange
=
10
;
public
int
ThickSmoothRange
=
6
;
/// <summary>
/// <summary>
/// 平滑的阀值,只有超出阀值,才平滑
/// 平滑的阀值,只有超出阀值,才平滑
...
@@ -1034,7 +1034,7 @@ namespace FLY.FeedbackRenZiJia.Server
...
@@ -1034,7 +1034,7 @@ namespace FLY.FeedbackRenZiJia.Server
/// <summary>
/// <summary>
/// 厚度控制线 , 厚度% 大于 厚度控制线 自动才会加热控制
/// 厚度控制线 , 厚度% 大于 厚度控制线 自动才会加热控制
/// </summary>
/// </summary>
public
double
CtrlLine
=
2
;
public
double
CtrlLine
=
3
;
...
...
Project.FLY.Thick.Blowing/FLY.Thick.Blowing.UI.Fix.Client/Properties/AssemblyInfo.cs
View file @
45b260fc
...
@@ -51,6 +51,6 @@ using System.Windows;
...
@@ -51,6 +51,6 @@ using System.Windows;
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//通过使用 "*",如下所示:
//通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")]
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("7.
1.0
")]
[assembly: AssemblyVersion("7.
3.0.3
")]
[assembly: AssemblyFileVersion("7.
1.0
")]
[assembly: AssemblyFileVersion("7.
3.0.3
")]
[assembly: Guid("D12087A7-EEC4-4D9F-9269-8F20324F4B04")]
[assembly: Guid("D12087A7-EEC4-4D9F-9269-8F20324F4B04")]
Project.FLY.Thick.Blowing/FLY.Thick.Blowing.UI/UiModule/ScanGraph/ScanGraphItemParam.cs
View file @
45b260fc
...
@@ -18,7 +18,7 @@ namespace FLY.Thick.Blowing.UI.UiModule
...
@@ -18,7 +18,7 @@ namespace FLY.Thick.Blowing.UI.UiModule
/// </summary>
/// </summary>
public
double
YRangePercent
{
get
;
set
;
}
=
3
;
public
double
YRangePercent
{
get
;
set
;
}
=
3
;
private
int
mix
=
2
;
private
int
mix
=
1
;
/// <summary>
/// <summary>
/// 混合数
/// 混合数
/// </summary>
/// </summary>
...
...
Project.FLY.Thick.BlowingScan/FLY.Thick.BlowingScan.UI.Client/Properties/AssemblyInfo.cs
View file @
45b260fc
...
@@ -51,6 +51,6 @@ using System.Windows;
...
@@ -51,6 +51,6 @@ using System.Windows;
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//通过使用 "*",如下所示:
//通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")]
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("7.3.0.
2
")]
[assembly: AssemblyVersion("7.3.0.
3
")]
[assembly: AssemblyFileVersion("7.3.0.
2
")]
[assembly: AssemblyFileVersion("7.3.0.
3
")]
[assembly: Guid("38E0D8EC-4D1C-49FF-AB08-6289294C5BD4")]
[assembly: Guid("38E0D8EC-4D1C-49FF-AB08-6289294C5BD4")]
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