How To Open Ionic SideMenu Manually?

This is rather simple: Inject the $ionicSideMenuDelegate in your controller like this:

.controller('myCtrl', function($scope, $ionicSideMenuDelegate) {})

And then you can open the side menu with:

$ionicSideMenuDelegate.toggleLeft();