You only need one variable and the known aspect ratio if you want to scale them consistently and absolutely and avoid scale.
If say your object is 16:9 ratio, and you were scaling it to 10x -
width=Lerp(self.width,self.width*10,0.5)
height=(width/16)*9
Or
height=width*0.5625