I have a form:
I think your problem is in the form name. You can read more about angular form here https://docs.angularjs.org/api/ng/directive/form. It says:
If the name attribute is specified, the form controller is published onto the current scope under this name.
So, different object stored under this name in scope. Try to set different form name, like this:
And in your controller:
$scope.placeThis = { target: 0 }
Another way to set initial value is using ng-init