How to clear a relationship field

So how do you CLEAR a relationship field that has a value in it?  I tried

this.model.set('whatevercontracts_accountsaccounts_ida', '')
this.model.set('whatevercontracts_accounts_name', '');

but that doesn't really work, it seems to leave the name in place.  If I d
this.model.set('whatevercontracts_accountsaccounts_ida', '')
this.model.set('whatevercontracts_accounts_name', ' ');

(see space in the name), that clears the name but doesn't really reset the field.