Great Deal! Get Instant $10 FREE in Account on First Order + 10% Cashback on Every Order Order Now

Guide to Project for Supervisors ITECH1400 Foundations of Programming CRICOS Provider No. 00103D ITECH1400 Assignment 2 Sem XXXXXXXXXXPage 1 of 5 Biorhythms: Theory & Practice Overview In this...

1 answer below »
Guide to Project for Supervisors
ITECH1400 Foundations of Programming
CRICOS Provider No. 00103D ITECH1400 Assignment 2 Sem XXXXXXXXXXPage 1 of 5
Biorhythms: Theory & Practice
Overview
In this assignment you will provide a Python script which will calculate the Biorhythms for any
individual and present the data graphically using li
aries and a common algorithm.
Timelines and Expectations
Percentage Value of Task: 20%
Due: Friday Sept 27, 2019 @ 17:00 (week 11)
Minimum time expectation: 20 hours
Learning Outcomes Assessed
The following course learning outcomes are assessed by completing this assessment:
K1. Identify and use the co
ect syntax of a common programming language.
K2. Recall and use typical programming constructs to design and implement simple software solutions.
K3. Reproduce and adapt commonly used basic algorithms.
K4. Explain the importance of programming style concepts (documentation, mnemonic names, indentation)

S2. Write and implement a solution algorithm using basic programming constructs.
S3. Demonstrate debugging and testing skills whilst writing code.

A1. Develop self-reliance and judgement in adapting algorithms to diverse contexts.
A2. Design and write program solutions to identified problems using accepted design constructs.
Assessment Details
Theory
Biorhythms were developed by Wilhelm Fließ, a colleague of Sigmund Freud, in the 19th century and
were very popular in the 1970s (Troutman, 1978); despite criticisms they are still used today in fields
such as work safety to sports performance (Arab, Omidvari, & Nasiripour, 2014; Habibi, Mohammadi,
Ghanbary Sartang, & Zeinodini, 2016; Zareian, Ra
ani, & Saeedi, 2014).
The theory underlying Biorhythms proposes that, from birth, three cycles: physical, emotional and
intellectual affect our performance. Understanding these cycles can help to optimise our potential.
CRICOS Provider No. 00103D ITECH1400 Assignment 2 Sem XXXXXXXXXXdocx Page 2 of 5
Although there are many references available, the paper by Troutman XXXXXXXXXXhas been attached as an early
computer application.
(Spend a little time looking at the code at the end of this paper. Consider all the GO TO statements in the code and
how it affects readability. Would this code be easy to modify? Debug? Compare this with the way we write code
today – refer to the 3 structures given by Boehm and Jacopini in the additional material in week 1.)
Your main task is to develop a Python application that can display Biorhythms for any person given
their date of birth and the target date. You should be able to provide the Biorhythms for a suitable
spread around the target date as well.
Two algorithms to determine the day of any date have been provided – you are to implement one of
these in a function which you call in your code to add the day of the week to your graph annotation.
(https:
log.artofmemory.com/how-to-calculate-the-day-of-the-week-4203.html)
Using a few carefully chosen dates, demonstrate that your day of the week function works co
ectly.
(Here we don’t use a Python li
ary function for this so that you might better appreciate li
aries.)
Practice
The last stage is to apply the Biorhythm code that you have implemented. There are many ways to do
this, for example:
Choose a favourite sports person – Roger Federer or Serena Williams for example. How were their
Biorhythms in their last tennis match? Did they win? If not what were their adversary’s Biorhythms
like?
Take a cele
ity – a famous actor – Clark Gable or Marilyn Monroe. Clark Gable had a heart attack on
November 5, 1960 and died shortly after. What were his Biorhythms like around this time?
Figure 1
Biorhythm chart over the first 66-day period after birth (after Wiki)
https:
log.artofmemory.com/how-to-calculate-the-day-of-the-week-4203.html
CRICOS Provider No. 00103D ITECH1400 Assignment 2 Sem XXXXXXXXXXdocx Page 3 of 5
Biorhythms indicate that we are at our peak when all three curves are at their maximum. How often
could we expect to experience this in our lifetimes? 10, 50 or 100 times or more? Modify your code to
determine this.
Discuss your own ideas with your lecturer or tutor.
A report is to be submitted in this assignment. There is a discussion section in the report in which you
can apply step 6 in the six-step problem solving process and ask the four questions often used in
evaluating a solution.
More details on academic reports are available - please refer to this link:
https:
federation.edu.au/cu
ent-students/learning-and-study/online-help-with/guides-to-your-assessments
There are three important parts
1. General Guide to Writing and Study Skills
This section describes the content of a report – refer to page 34 – Abstract, Table of Contents,
Introduction, Conclusion and so on.
2. General Guide to Referencing
APA referencing style is described in this section – EndNote is also available to students
3. Assignment Layout and Appearance Guidelines
This section describes how the report should appear: margin sizes, fonts, how diagrams and
tables are presented and so on.
While you are encouraged to research and discuss your work with colleagues, the final product must
e all your own work. (Screen shots of a debugger might be useful in explaining how your code
works.)
Any help must be acknowledged as well as any resource material.
https:
federation.edu.au/cu
ent-students/learning-and-study/online-help-with/guides-to-your-assessments
CRICOS Provider No. 00103D ITECH1400 Assignment 2 Sem XXXXXXXXXXdocx Page 4 of 5
Submission
You must supply your program source code files and your documentation as a single zip file named as
follows:
YOUR-NAME>_.zip
e.g. Ada_LOVELACE_ XXXXXXXXXXzip
You may supply your word processed documentation in either Microsoft Word or
Li
eOffice/OpenOffice formats only – no proprietary Mac specific formats, please.
Assignments will be marked on the basis of fulfilment of the requirements and the quality of the work.
In addition to the marking criteria, marks may be deducted for failure to comply with the assignment
equirements, including (but not limited to):
• Incomplete implementation(s), and
• Incomplete submissions (e.g. missing files), and
• Poor spelling and grammar.
You might be asked to demonstrate and explain your work.
Marking Criteria/Ru
ic
Biorhythms Item Mark
Basic Description of Biorhythms – in your own
words - significant parts of the three curves
including their relationship to one anothe
10
Description of Biorhythms as sine and
cosine curves – including the importance of
phase and amplitude e.g. critical days
10
Pseudocode for the calculation of
Biorhythms
15
Graphical display with significant parts of
the curves labelled
10
CRICOS Provider No. 00103D ITECH1400 Assignment 2 Sem XXXXXXXXXXdocx Page 5 of 5
Graphical Display Annotation of the curves with day and date
using the algorithm provided or suitable
algorithm – description of the algorithm in
your own words. Do not use li
ary function.
10
Demonstration that co
ect day/date
annotation is implemented in code
10
Practical application of your Biorhythm
code. Discuss you individual approach with
your lecture
tutor.
10
Discussion
/15
Report1 /10
TOTAL /100
FINAL MARK /20
Feedback
Feedback will be provided in lectures and labs as well as on Moodle
Plagiarism:
Plagiarism is the presentation of the expressed thought or work of another person as though it is one's
own without properly acknowledging that person. You must not allow other students to copy your work
and must take care to safeguard against this happening. More information about the plagiarism policy
and procedure for the university can be found at http:
federation.edu.au/students/learning-and-
study/online-help-with/plagiarism.
References
Arab, F., Omidvari, M., & Nasiripour, A. A XXXXXXXXXXInvestigating of the effect of Biorhythm on work-related Accidents
Journal of Health and Safety at Work, 4(2), 51-58.
Habibi, E., Mohammadi, Z., Ghanbary Sartang, A., & Zeinodini, M XXXXXXXXXXInvestigation Effect of Biorhythm on Work-
Related Accidents in the Metal Industry (A Short Report). Iranian Journal of Health, Safety and Environment, 3(3),
583-586.
Troutman, J. G XXXXXXXXXXBiorhythms: A Computer Program. The Two-Year College Mathematics Journal, 9(2), XXXXXXXXXX.
doi:10.2307/3026611
Zareian, E., Ra
ani, V., & Saeedi, F XXXXXXXXXXThe Effect of Physical Biorhythm Cycle on Some Physical Fitness Factors
of Adolescent Volleyball Players (Vol. 2).

1 https:
federation.edu.au/cu
ent-students/learning-and-study/online-help-with/guides-to-your-assessments
http:
federation.edu.au/students/learning-and-study/online-help-with/plagiarism
http:
federation.edu.au/students/learning-and-study/online-help-with/plagiarism
https:
federation.edu.au/cu
ent-students/learning-and-study/online-help-with/guides-to-your-assessments

https:
log.artofmemory.com/how-to-calculate-the-day-of-the-week-4203.html
    ScreenClip000108
    ScreenClip000109

Iranian Journal of Health, Safety & Environment, Vol.3, No.3, pp XXXXXXXXXX
578
Investigation Effect of Biorhythm on Work-Related Accidents in The Metal
Industry (A Short Report)

Ehsanollah Habibi
1,
Zahra Mohammadi
1
, Ayoub Ghanbary Sartang
*2
, Mohammad Zeinodini
1


1) Department of Occupational Health, School of health, Isfahan University of Medical Science, Isfahan, Iran.
2) Occupational Health, Isfahan University of medical sciences, Isfahan , Iran.

*Author for Co
espondence: XXXXXXXXXX
Received: 8 Jan. 2016, Revised: 22 Jan. 2016, Accepted: 29 Jan. 2016
ABSTRACT
Biorhythm is one of the newest subjects in the field of cognition of mental ergonomics which can be very effective
in reduction of work-related accidents or mistakes with no apparent reason. With evaluating Biorhythm individuals
can intervention action to reduce job accidents ca
ied out. Thus, the aim of this study was to determine the
elationship Biorhythm and work-related accidents in the metal industry. This research is a cross-sectional and
analytical-descriptive in the metal industrial Isfahan city of 120 work-related accidents during 2015. The required
information was collected from available documents in HSE unit of the company biorhythm charts were drawn
ased on a date of accidents and participants birthdays, using natural Biorhythm Software V3.02 Conduct. Finally ،
the data were analyzed using spss version 20 and descriptive statistics.This study showed that the frequency of
accidents in critical days and negative section of physical cycle was more than expected. Also the frequency of
accidents in critical days and negative section of emotional and intellectual cycles was less than expected. Most type
of injury, including cuts to 35.8
Answered Same Day Sep 22, 2021 ITECH1400

Solution

Arun Shankar answered on Sep 27 2021
169 Votes
import datetime
import math
from math import *
import matplotlib as mpl
import matplotlib.pyplot as plt
mpl.use('Agg')
fig = plt.figure(figsize=(10,10))
ax = fig.add_subplot(111)
# create four lists
phy = list()
emo = list()
intl = list()
d = list()
dob = input('Enter date of birth in format mm-dd-yyyy: ').split('-')
dspread =...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here