Hello, if you have any need, please feel free to consult us, this is my wechat: wx91due
ELEC362
Project
DataViz version 0.4
Module |
ELEC362 |
Coursework name |
Software Development Project |
Component weight |
50% |
Semester |
1 |
HE Level |
5 |
Lab location |
personal computers/laptops, university remote computer |
Work |
Individual |
*Estimated time to finish |
40 hours (coding and testing) |
Assessment method |
Individually |
Submission format |
Online via VITAL |
Submission deadline |
23:59 on the 5th of January |
Late submission |
Standard university penalty applies |
Resit opportunity |
None except for extenuating circumstance |
Marking policy |
Marked and moderated independently |
Anonymous marking |
No |
Feedback |
via CANVAS |
Expected release of marks date |
15 business days from the deadline |
Learning outcomes |
LO2: Using C++ to implement GUI-based software.
LO3: Using online documentation for self-learning.
|
*Note: This estimate may vary based on the need to debug your application. Make sure you start working on the project as soon as possible.
The concept:
The long term aim of the project is to develop a fully functional software, known as DataViz, for plotting and processing datasets, which will be eventually deployed and released for all students in the department to use in their reports, data processing, and as a show case of an authentic experience of software development for the students of ELEC362. The development is planned over 5 years, which started in 2022. Each year the cohort of ELEC362 will be asked to make a major upgrade to the software (will be referred to as the control version in this report).
Each header file of every class in the control version (source files) of the project contains a comment explaining what the purpose of the class is. The features currently available in the app can be found under “Help” menu.
Upgrades required for this year:
- Prevent the function feature from plotting a dataset that does not exist.- Modify the code so when the name of a dataset is changed, the change in the name is recognisable by the rest of the software.*- Modify the code such that datasets generated by the function feature are treated similarly to those generated by reading the dataset from a file.*
Note: A video will be published on CANVAS to show you how to induce these bugs.
After you are done with the upgrade; make sure that:
- You handled a range of potential errors/bugs that may be experienced in the updated app. Even if these errors/bugs are caused by a previous version of the app.
It is an expectation from everyone to consult Qt documentation to find any functions or classes that might be useful for the implementation of the project. Finally, you should make the programme as professional as possible. Imagine this project as a real-life project given to you, and that in the next years, it will be developed further by other students.
Note for Mac OS users: You can develop the application based on Mac version of the app. The application will be tested and marked on a Windows machine. You should verify that your app works as it should on one of the computers in the lab before submission, to avoid any potential crossplatform issue, if you have any problems, please let me know.
Suggested approach to be followed:
Start by implementing the simplest tasks. For more advanced tasks, a good idea is to learn how to implement these features in an empty app. Once that works, you can adapt the code from the empty project into the control version. Note that is merely a suggestion and it has no impact on your mark whether you followed it or not.
Adding new features is simpler than addressing bugs, therefore it is a good idea to start with that.
If you are unsure contact the module coordinator for any assistance.
Every submission should consist of the project’s files in a zip file + the code written by you copied pasted in a PDF file+ a filled assistant sheet form. The name of the zip file as well as the report must be your name (MohammadHasan.zip and MohammadHasan.pdf). The PDF file and the assistant sheet must not be zipped.
Data visualisation and processing applications are essential tool in all fields of industry and academia, which apply to all fields of science from physics, chemistry and engineering to social sciences. The tasks given in this project are essential part of famous software including:
Criteria (weight %) |
What does it mean? |
Indicative characteristics |
|
Adequate / pass
(40%)
|
Very good/Excellent |
||
Algorithm and design of the programme (40%) |
Are all the requested features met? Is the upgrade consistent with the previous design or is it completely different? Does the application handle memory efficiently? |
• The programme does what it designed to do with clear shortcoming.
• The use of memory is completely inefficient but is working.
• Many requested features are missing.
• The features added are very different from the style of the rest of the app.
|
• The programme does what it designed to do without any flaws an in an efficient way
• The memory management is very efficient.
• All requested features were added, and listed bugs were fixed.
• The design of the added features is so well integrated with the software, making upgrades for future release of the software straightforward.
|
Code and GUI implementation (30%) |
Is the code well organised? Are the variables named properly? Is the code well commented? Does the code make good use of Object-Oriented Programming style? Is the GUI user friendly? |
• It is difficult to understand what the code does.
• Poorly commented code.
• The coding /commenting style is different from the original code.
• Layout of the GUI is not set.
• Classes are poorly used or not used at all.
• The added features work but not consideration was given to the user experience.
|
• The code is written in very organised way that is easy to follow.
• The code is very well documented.
• The coding/style of the added feature is very similar to the original code.
• The GUI is very easy to work with.
• The data structure used are the most appropriate for the purpose they are used for.
• The code is structured in terms of classes and uses multiple aspects of OOP paradigm.
• Proper consideration for the user experience is given. |
Verification and Error-Handling (30%) |
Has the application been validated and verified? What does the programme do if there is a run-time error? |
• The application was tested for one case only.
• The application contains minimal error handling.
• Error messages are not helpful.
|
• The application has been thoroughly tested.
• Error handling has been done professionally for at least 3 potential run-time errors/bugs.
• Error messages are meaningful.
|