Change AngularJS Input Value

I want to programmatically update the value of an AngulrJS input field model with plain javascript from the browser console.
If I just use element.value = 0.5 it displays the new value but doesnt update the real model value that is associated with the input. Therefore no update event is triggered. Is this possible through the console?