Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
W
WindEnergyToolbox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
The Gitlab server is succesfully updated to version 17.10.3
Show more breadcrumbs
wtlib
WindEnergyToolbox
Commits
2785c0a7
Commit
2785c0a7
authored
9 years ago
by
mads
Browse files
Options
Downloads
Patches
Plain Diff
updated README.md
parent
fb842346
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+2
-1
2 additions, 1 deletion
README.md
wetb/hawc2/simulation.py
+16
-16
16 additions, 16 deletions
wetb/hawc2/simulation.py
with
18 additions
and
17 deletions
README.md
+
2
−
1
View file @
2785c0a7
...
...
@@ -16,7 +16,8 @@
-
[
ae_file
](
wetb/hawc2/ae_file.py
)
: Read AE (aerodynamic blade layout) files
-
[
pc_file
](
wetb/hawc2/pc_file.py
)
: Read PC (profile coefficient) files
-
[
shear_file
](
wetb/hawc2/shear_file.py
)
: Create user defined shear file
-
[
at_time_file
](
wetb/hawc2/at_time_file.py
)
: read at output_at_time files
-
[
at_time_file
](
wetb/hawc2/at_time_file.py
)
: Read at output_at_time files
-
[
log_file
](
wetb/hawc2/log_file.py
)
: Read and interpret log files
-
[
ascii2bin
](
wetb/hawc2/ascii2bin
)
: Compress HAWC2 ascii result files to binary
### [gtsdf](wetb/gtsdf)
...
...
This diff is collapsed.
Click to expand it.
wetb/hawc2/simulation.py
+
16
−
16
View file @
2785c0a7
...
...
@@ -143,7 +143,7 @@ class Simulation(object):
print
(
"
-
"
*
50
)
print
(
"
stderr:
\n
"
,
self
.
stderr
)
print
(
"
#
"
*
50
)
self
.
logFile
.
errors
(
list
(
set
([
l
for
l
in
self
.
stderr
.
split
(
"
\n
"
)
if
'
error
'
in
l
.
lower
()])))
self
.
errors
=
(
list
(
set
([
l
for
l
in
self
.
stderr
.
split
(
"
\n
"
)
if
'
error
'
in
l
.
lower
()])))
self
.
status
=
ERROR
# else:
# self.stop()
...
...
@@ -162,21 +162,21 @@ class Simulation(object):
if
self
.
logFile
.
status
not
in
[
log_file
.
DONE
]:
self
.
logFile
.
status
=
ABORTED
class
SimulationProcess
(
Process
):
def
__init__
(
self
,
modelpath
,
htcfile
,
hawc2exe
=
"
HAWC2MB.exe
"
):
Process
.
__init__
(
self
)
self
.
modelpath
=
modelpath
self
.
htcfile
=
os
.
path
.
abspath
(
htcfile
)
self
.
hawc2exe
=
hawc2exe
self
.
res
=
[
0
,
""
,
""
,
""
]
self
.
process
=
process
([
self
.
hawc2exe
,
self
.
htcfile
]
,
self
.
modelpath
)
def
run
(
self
):
p
=
psutil
.
Process
(
os
.
getpid
())
p
.
nice
=
psutil
.
BELOW_NORMAL_PRIORITY_CLASS
exec_process
(
self
.
process
)
#
class SimulationProcess(Process):
#
#
def __init__(self, modelpath, htcfile, hawc2exe="HAWC2MB.exe"):
#
Process.__init__(self)
#
self.modelpath = modelpath
#
self.htcfile = os.path.abspath(htcfile)
#
self.hawc2exe = hawc2exe
#
self.res = [0, "", "", ""]
#
self.process = process([self.hawc2exe, self.htcfile] , self.modelpath)
#
#
#
def run(self):
#
p = psutil.Process(os.getpid())
#
p.nice = psutil.BELOW_NORMAL_PRIORITY_CLASS
#
exec_process(self.process)
class
SimulationThread
(
Thread
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment