Model Solving without Caliberation

How to solve the model without a steady state and calibration? Kindly help!

model;
c (+1)/c= BETA * (1+ r (+1) - DELTA (+1));

1-l = (c/w) * b;

r = ALPHA * (y/k);

w = (1-ALPHA) * (y/l);

c = y - iv;

y = (k (+1) - (1-DELTA) * k)/c;

y = k^ALPHA * l^(1-ALPHA);

end;

This is a standard RBC model. If you properly initialize initval and the parameters, the model should run.

Yes the model did run with initializing initval and the parameter. But if you would please help me to know, can the model will provide any output if run without initializing initval and the parameter?

output say equation for each variables (c, l, r…).

That is not a well-defined question.

var
c l k w r iv y
;

parameters

ALPHA
BETA
DELTA
b
;

model;
c (+1)/c= BETA * (1+ r (+1) - DELTA (+1));

b = w * (1-l)/c ;

r = ALPHA * (y/k);

w = (1-ALPHA) * (y/l);

c = y - iv;

iv = (k (+1) - (1-DELTA) * k);

y = k^ALPHA * l^(1-ALPHA);

end;

You still did not tell us what you are trying to achieve.

Here we want to solve the model. How can we do it in dynare? Please guide.

Please guide.

But you did not specify a complete model yet.