Skip to content

plvzfq-rit/CSARCH2_Simulation_Project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CSARCH2_Simulation_Project

Introduction

A Node.js web application that is used to convert decimal inputs to IEEE754-2008 binary format. Representations are shown in both binary and hexadecimal. Options to round (round to nearest evens, truncation, ceiling, floor, and arithmetic rounding) are provided for numbers with more than 16 digits.

How to initialize

Ensure first that node.js and npm are both installed in your system. From there, open the folder containing the project in the command line. Execute the following snippets of code in succession to initialize the node.js project: npm init -y then npm install express decimal.js --save Following that, type in node index into the command line. The project would now be open on localhost:3001.

File outputs

An option is provided for results to be saved in an external text file output.txt; this would be located in the project folder. Previous saved results would not be overwritten.

Problems Encountered

Problems were initially encountered with Javascript's limited ability to represent beyond numbers with a factor of 10^308. This led to the use of an external library decimal.js, to aid in representing the numbers in memory. Use of Flask and Python was considered; however, the steep learning curve and negligible gains lead to the abandonment of the idea. Issues were also faced when trying to output values into a .txt file from the web application. Nevertheless, a module within node.js was found (fs); it aided in accomplishing the task.

Screenshots

Input: 0 (0) image

Input: e (NAN) image

Input: 10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
(Infinity Exponent) image

Input: -10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 (Negative Infinity Exponent) image

Input: 9999999999999999000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 (Maximum Magnitude) image

Input: 0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 (Minimum Magnitude) image

Input: -9999999999999999000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 (Negative Max Magnitude) image

Input: -0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 (Negative Min Magnitude) image

Input: 0.000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 (Below Min Mag) image

Input: -0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 (Neg Below Min Mag) image

Rounding Cases: Input: 3.1415926535897955 (Gaussian Rounding) image

Input: 3.1415926535897955 (Truncation) image

Input: 3.1415926535897955 (Floor) image

Input: 3.1415926535897955 (Ceiling) image

Input: 3.1415926535897955 (Arithmetic Rounding) image

Input: -3.1415926535897955 (Gaussian Rounding) image

Input: -3.1415926535897955 (Truncation) image

Input: -3.1415926535897955 (Floor) image

Input: -3.1415926535897955 (Ceiling) image

Input: -3.1415926535897955 (Arithmetic Rounding) image

Acknowledgements

This simulation project is made in partial fulfillment for the requirements of a degree in Computer Science. Two open source projects were used to aid in making this application: decimal.js, for representing large numbers that vanilla Javascript could not, and express for routing.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published