Hello Vinu,
I am aware of submissions to the FDA in sbproj format from SimBiology.
That said, if you are required to submit the model alone, it can be saved in a MAT-file. Simply export the model from SimBiology to the MATLAB workspace
and use the save command in MATLAB:
>> save('qspmodel', 'model')
Assuming 'model' is the name of the variable in MATLAB.
While sending the FDA a MAT-file satisfies their published file format requirements, they will need MATLAB and SimBiology to do anything with that model, therefore it works just as well to send the sbproj file (sbioloadproject loads the model). The benefit of the sbproj file is that in addition to the model other pieces of data will be included, such as:
- The graphical layout of the model.
- Any programs (e.g., simulations, parameter fits, etc.) built by the authors/users of the model.
- Data that might have been used for model calibration.
I hope this helps. Please let me know if you need more information.