Can I have multiple where conditions on fuel_model and greater than or equal to?
Never mind...solved my problem like so:
$CI =& get_instance();
$CI->load->model('events_model');
$events = $CI->events_model->find_all(array('published' => true, 'start_date >=' => datetime_now()), 'start_date asc', 3);