From visual inspection, it doesn't seem like there's intersection between bem_outerskull_1922V and bem_innerskull_2432V.
By the way, below is the code I'm using to generate BEM (sFiles2) and sFiles11 is the step where I'm getting the above error.
Thank you so much for your time to look into this!
---------------------------------------------------------------
sFiles = [];
%----------------------------------
% Start a new report (sFiles1)
% Process: Import anatomy folder
%----------------------------------
bst_report('Start', sFiles);
% freesurfer folder
AnatFolder = [path_freesurfer '/' subject '/'];
sFiles1 = bst_process('CallProcess', 'process_import_anatomy', sFiles, [], ...
'subjectname', subject, ...
'mrifile', {AnatFolder, 'FreeSurfer'}, ...
'nvertices', 15000, ...
'nas', [SCS.NAS(1) SCS.NAS(2) SCS.NAS(3)], ...
'lpa', [SCS.LPA(1) SCS.LPA(2) SCS.LPA(3)], ...
'rpa', [SCS.RPA(1) SCS.RPA(2) SCS.RPA(3)], ...
'ac', [0, 0, 0], ...
'pc', [0, 0, 0], ...
'ih', [0, 0, 0]);
% Save and display report
ReportFile = bst_report('Save', sFiles1);
bst_report('Open', ReportFile);
%----------------------------------
% Start a new report (sFiles2)
% Process: Generate BEM surfaces
%----------------------------------
sFiles2 = bst_process('CallProcess', 'process_generate_bem', [], [], ...
'subjectname', subject, ...
'nscalp', 1922, ...
'nouter', 1922, ...
'ninner', 2432, ...
'thickness', 4);
(....)
%------------------------------------------------------
% Process: Low-pass:70Hz
%------------------------------------------------------
sFiles6 = bst_process('CallProcess', 'process_bandpass', sFiles5, [], ...
'sensortypes', 'MEG, EEG', ...
'highpass', 0, ...
'lowpass', 70, ...
'tranband', 0, ...
'attenuation', 'strict', ... % 60dB
'ver', '2019', ... % 2019
'mirror', 0, ...
'read_all', 0);
(...)
%------------------------------------------------------
% Process: Compute head model
%------------------------------------------------------
sFiles11 = bst_process('CallProcess', 'process_headmodel', sFiles6, [], ...
'Comment', '', ...
'sourcespace', 1, ... % Cortex surface
'meg', 3, ... % Overlapping spheres
'eeg', 3, ... % OpenMEEG BEM
'ecog', 2, ... % OpenMEEG BEM
'seeg', 2, ... % OpenMEEG BEM
'openmeeg', struct(...
'BemFiles', {{}}, ...
'BemNames', {{'Scalp', 'Skull', 'Brain'}}, ...
'BemCond', [1, 0.0125, 1], ...
'BemSelect', [1, 1, 1], ...
'isAdjoint', 0, ...
'isAdaptative', 1, ...
'isSplit', 0, ...
'SplitLength', 4000), ...
'channelfile', '');