I am a research student and stuck at a point in my work and want your help. I have three different variables for each node of my network (Energy, Traffic Load and Link quality). These three variables have different units. I want to add them linearly to get a grade or rating in range of (0,1) and assign it to a node. So what i did is i normalized these variables in (0-1) range by dividing them with their maximum values and and then added them together. I want to know whether its correct?
Energy = Energy(i)/Energy(max) [0,1]
Traffic Load = Traffic Load(i)/Traffic Load(max) [0,1]
Link Quality = Link Quality (i)/Link Quality(max) [0,1]
Grade = Energy + Traffic Load + Link Quality