-
Notifications
You must be signed in to change notification settings - Fork 56
PyFluent dash gui. #470
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
PyFluent dash gui. #470
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
// | ||
// Copyright 1987-2022 ANSYS, Inc. All Rights Reserved. | ||
// | ||
|
||
syntax = "proto3"; | ||
|
||
package grpcRemoting; | ||
|
||
service Monitor { | ||
/* Get monitors info i.e. monitors name and their properties e.g. x-label, y-label, title etc*/ | ||
rpc GetMonitors(GetMonitorsRequest) returns (GetMonitorsResponse) {} | ||
/* Begin monitors data streaming i.e. monitors x-values and corresponding y-values.*/ | ||
rpc BeginStreaming(StreamingRequest) returns (stream StreamingResponse) {} | ||
} | ||
|
||
/** | ||
* Monitor type. | ||
*/ | ||
enum MonitorType { | ||
Residual = 0; // Solver residuals. | ||
Solution = 1; // Solution monitors. | ||
} | ||
|
||
/** | ||
* X-axis type. | ||
*/ | ||
enum XAxisType { | ||
Unset = 0; // Axis unset. | ||
Iteration = 1; // Iteration axis. | ||
Time = 2; // Time axis. | ||
} | ||
|
||
/** | ||
* Unit data. | ||
*/ | ||
message UnitData { | ||
string name = 1; // Unit name | ||
string unit = 2; // Unit e.g. Fahrenheit | ||
double factor = 3; // Unit factor e.g. for Fahrenheit it will be 0.5555556. | ||
double offset = 4; // Unit offset e.g. for Fahrenheit it will be 459.67. | ||
} | ||
|
||
/** | ||
* Monitor set definition provided by GetMonitors. | ||
*/ | ||
message MonitorSet { | ||
string name = 1; // Monitor set name. | ||
string title = 2; // Monitor set title. | ||
string xlabel = 3; // Monitor set xlabel. | ||
string ylabel = 4; // Monitor set ylabel. | ||
sint64 frequency = 5; // Monitor set frequency. | ||
MonitorType type = 6; // Monitor set type. | ||
UnitData unitinfo = 7; // Monitor set unit info. | ||
XAxisType axis = 8; // X-axis type. | ||
repeated string monitors = 9; // Monitor set monitors. | ||
} | ||
|
||
/** | ||
* X axis data i.e. axis type and index provided by monitors streaming. | ||
*/ | ||
message XAxisData { | ||
XAxisType xaxistype = 1; // X-axis type. | ||
sint64 xaxisindex = 2; // X-axis index. | ||
} | ||
|
||
/** | ||
* Y axis data i.e. monitor name and value provided by monitors streaming. | ||
*/ | ||
message MonitorData { | ||
string name = 1; | ||
double value = 2; | ||
} | ||
|
||
/** | ||
* GetMonitors Request. | ||
*/ | ||
message GetMonitorsRequest { | ||
} | ||
|
||
/** | ||
* GetMonitors Response. | ||
*/ | ||
message GetMonitorsResponse { | ||
repeated MonitorSet monitorset = 1; | ||
} | ||
|
||
/** | ||
* Streaming Request. | ||
*/ | ||
message StreamingRequest { | ||
} | ||
|
||
/** | ||
* Streaming Response. | ||
*/ | ||
message StreamingResponse { | ||
XAxisData xaxisdata = 1; | ||
repeated MonitorData yaxisvalues = 2; | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is equivalent to
pandas>=1.3.5
.