diff --git a/workflows/energy_plus/module/module.js b/workflows/energy_plus/module/module.js
index 93f923d..1e18c01 100644
--- a/workflows/energy_plus/module/module.js
+++ b/workflows/energy_plus/module/module.js
@@ -58,7 +58,7 @@ exports.run = async (application, param, tmp_path) => {
}
else if (response.status == 400) {
console.log('invalid request')
- error = `
${application}
Most likely there are an issue with either your geometry file, your parameters or both`
+ error = `${application}
Most likely, there is an issue with either your geometry file, your parameters or both`
}
else if (response.status == 500) {
console.log('API Error')
diff --git a/workflows/meb/main.html b/workflows/meb/main.html
index 27ca1dd..bcef8a6 100644
--- a/workflows/meb/main.html
+++ b/workflows/meb/main.html
@@ -17,7 +17,7 @@
a result, it provides the energy and electrical demand, the energy consumption and the peak loads for
heating, cooling, lighting and appliances.
All of these results are provided on both a monthly and a yearly basis.
- the design of this workflow, the following assumptions are made:
+ In the design of this workflow, the following assumptions are made:
- No building in the region has attics
- All buildings have basements but those are not heated
diff --git a/workflows/meb/module/module.js b/workflows/meb/module/module.js
index 6b09c48..942d3c7 100644
--- a/workflows/meb/module/module.js
+++ b/workflows/meb/module/module.js
@@ -94,11 +94,11 @@ exports.run = async (application, param, tmp_path) => {
}
else if (response.status == 400) {
console.log('invalid request')
- error = 'Insel Meb failed
Most likely there are an issue with either your geometry file, your parameters or both'
+ error = `${application} failed
Most likely, there is an issue with either your geometry file, your parameters or both`
}
else if (response.status == 500) {
console.log('API Error')
- error = 'Insel Meb failed
There are an error in the API side.'
+ error = `${application} failed
There is an error in the API side.`
}
BrowserWindow.fromId(1).webContents.send('task-completed', error)
results = await response.json()