
 %ComputerOS/PhoneOS
 %platform
@@ -223,10 +212,7 @@ It additionally separates the program logic from the interface display and syste
 
 \subsection{Design Rationale}
 %what we decided to use and bullet list of reasons why.
-% maybe see other rationales for this one?
-Below are reasoning for each platform being used:
-
-\subsubsection{Desktop Application}
+% maybe see other rationales for this one?\
 - Uniform among all hospital rooms.
 \newline
 - Secure/ isolated from outside influence.
@@ -235,13 +221,6 @@ Below are reasoning for each platform being used:
 \newline
 - Accessible to many users.
 
-\subsubsection{Mobile Application}
-- Portable, can be used outside of the patient's room
-\newline
-- Easily accessible since it can be downloaded by anyone.
-\newline
-- Personalized, but only accessible per one person.
-
 \subsection{Deliverables}
 \subsubsection{Goal}
 The final product should be an application that automates and optimizes catch-up rate calculations for nurses and dietitians. We have two possible platforms on which to develop our app: mobile and desktop. The main goal is to complete an app for one of these (depending on most desirable platform) and conduct both simulated and field tests with the final product.
@@ -295,28 +274,28 @@ Users will experience a lower performance impact compared to other options, as t
 \subsection{Time-based Input Calculations}
 \subsubsection{Approach}
 This section is important when reducing the math nurses have to do. Instead of asking for total amount administered or number of hours a patient was fed, we could have nurses simply track as they go. Nurses can tell the app at what time they started and stopped and the rate that the feeding was set to. The app should be able to figure out the current time and use past entries to tell nurses what the future rate should be. In this case, nurses wouldn't even need to calculate the number of hours missed, the app should do it. Depending on the platform being used the method can slightly change, however it will always remain fairly standard. We will grab a timestamp of Day:Hour:Minute:Second for calculations. 
-\newline
-\newline
-An few examples of what this may look like include: 
-\newline
-\newline
-Assuming we use the Ionic framework for a mobile interface we would use the date() function to grab a timestamp \autocite{ionicforum}.
-\newline
-\indent let date = new Date()\newline
-\indent console.log("Current Date ",date)
-\newline
-\newline
-Assuming we use JavaScript for a web interface we would use the getTime() function to grab a timestamp.
-\newline
-\indent Date.getTime()
-\newline
-\newline
-Assuming that we use Cordova framework for a mobile interface we would use the currentdate class to grab the current time data \autocite{cordova}.
-\newline
-\indent var currentdate = new Date(); \newline
-\indent var datetime = currentdate.getHours() + ":"\newline
-\indent \indent \indent + currentdate.getMinutes() + ":" \newline
-\indent \indent \indent + currentdate.getSeconds();\newline
+%\newline
+%\newline
+%An few examples of what this may look like include: 
+%\newline
+%\newline
+%Assuming we use the Ionic framework for a mobile interface we would use the date%() function to grab a timestamp \autocite{ionicforum}.
+%\newline
+%\indent let date = new Date()\newline
+%\indent console.log("Current Date ",date)
+%\newline
+%\newline
+%Assuming we use JavaScript for a web interface we would use the getTime() %function to grab a timestamp.
+%\newline
+%\indent Date.getTime()
+%\newline
+%\newline
+%Assuming that we use Cordova framework for a mobile interface we would use the %currentdate class to grab the current time data \autocite{cordova}.
+%\newline
+%\indent var currentdate = new Date(); \newline
+%\indent var datetime = currentdate.getHours() + ":"\newline
+%\indent \indent \indent + currentdate.getMinutes() + ":" \newline
+%\indent \indent \indent + currentdate.getSeconds();\newline
 \subsubsection{Concerns}
 We want to ensure that the application is as accurate as possible. Will the device have accurate time? Will the application know if times don't line up properly? Additionally, if times overlap or aren't in the correct order, it must tell the user an incorrect input was entered and reject the input.
 
@@ -343,28 +322,27 @@ This method of data storage is used when the user wants to export information to
 \subsubsection{Approach}
 The chosen framework is one that makes the application easy to interact with and enjoyable while also reducing the amount of developer time to achieve that goal.
 A desktop platform will be the main focus of development and framework selection.
-If development continues smoothly, an optional mobile platform will be created as a stretch goal.
-\newline
-\noindent
-Desktop Interface Framework
-\\\\
-Qt: This framework includes many built-in features and covers a wide variety of platforms, including macOS, windows, and linux \autocite{qplatforms}. 
-The framework is also widely used in the open-source community and has support for a variety of languages, including C++, Java, and Python \autocite{qplatforms}.
-The wide user base additionally provides a wealth of documentation and example projects from which to draw inspiration.
-\\\\
-\noindent
-Mobile Interface Framework
-\newline
 \newline
 \noindent
-React Native: 
-A very popular cross-platform option for Android and iOS development. This framework is inclusive and uses JavaScript. This makes it very familiar, especially for our team who hasn't had experience with mobile app development. This may be the easiest option to learn of the three listed here.
-\newline
-\newline
-Apache Cordova / PhoneGap: 
-This framework seems to emphasize the ease of use with peripherals such as the phone's camera and other apps. While this is great, we likely won't need to make use of this. The benefit of this framework is that many versions of an application can be created using the same code base which makes developing for multiple platforms easier.
-\newline
-\newline
+%Desktop Interface Framework
+%\\\\
+%Qt: This framework includes many built-in features and covers a wide variety of %platforms, including macOS, windows, and linux \autocite{qplatforms}. 
+%The framework is also widely used in the open-source community and has support %for a variety of languages, including C++, Java, and Python \autocite%{qplatforms}.
+%The wide user base additionally provides a wealth of documentation and example %projects from which to draw inspiration.
+%\\\\
+%\noindent
+%Mobile Interface Framework
+%\newline
+%\newline
+%\noindent
+%React Native: 
+%A very popular cross-platform option for Android and iOS development. This %framework is inclusive and uses JavaScript. This makes it very familiar, %especially for our team who hasn't had experience with mobile app development. %This may be the easiest option to learn of the three listed here.
+%\newline
+%\newline
+%Apache Cordova / PhoneGap: 
+%This framework seems to emphasize the ease of use with peripherals such as the %phone's camera and other apps. While this is great, we likely won't need to %make use of this. The benefit of this framework is that many versions of an %application can be created using the same code base which makes developing for %multiple platforms easier.
+%\newline
+%\newline
 %%%%%%%%
 % Commented this out for now, because it probably doesn't apply to our project now that we know it's non-free? Uncomment if I'm wrong on that
 %%%%%%%%
@@ -375,10 +353,10 @@ This framework seems to emphasize the ease of use with peripherals such as the p
 %\newline
 %\newline
 
-\subsubsection{Concerns}
+%\subsubsection{Concerns}
 %Note: Biggest issue is the uncertainty of our platform. This will be revised for the final draft!!!!!!!! When this is done, the above section will be revised to have just the singular option chosen.
 %\newline
-For now, the main concerns to consider are: Does it cost money? Is what we want to do feasible on this platform? All the options listed above are viable, the main roadblock is choosing what the nurses prefer.
+%For now, the main concerns to consider are: Does it cost money? Is what we want to do feasible on this platform? All the options listed above are viable, the main roadblock is choosing what the nurses prefer.
 
 %=======================================================
 \section{Conclusion}
