One of the key uses of the separation in MVC of the Model class from the Controller is to help abstract your database tables into well structures objects. If your designing a non-trivial data structure and want to use good OO code to represent it, your going to need to encapsulate objects inside of other objects. However, the Model class do not create an instance of the models you load like the controller class does. You have to manually instantiate a object of a model to use it. Here is an example how you should do this:
class StateModel extends Model
{
private special_interest_group;
function fleece_the_poor($tax_revenue)
{
$this->load->model('SpecialInterestModel');
$this->special_interest_group = new SpecialInterestGroupModel();
$this->special_interest_group->misappropriate_funds($tax_revenue);
}
}
It will work to get a reference to the CI object and load a model into that object to access, but it's not the cleanest way to do it. In the above example, clearly a state has a powerful but secret special interest group--accessing and outside object to store this object would break encapsulation.