I know the knowledge of Verilog modeling is very important for verilog coder. we design hardware with different modeling i want to know when we use behavioral and structural modeling
There are not specific rules for when to use which modelling. You can use any modelling type as per your needs, or even hybrid modelling too.
Usually we use behavioral modelling for sequential circuits and structural for combinational circuits.
usually both are used together, behavioral and structural modeling
What I have understood is structural modelling is more towards hardwired, while behavioral gives ease of use, we can use behavioral for both combinational or sequential design details.
For simulation usually behavioral modeling us used almost at most of the cases, if not all.
Ultimately it does not make any differnce if you use combination of both modelling and usually you will notice you be using both as you get more into it and these terms of modeling will become obsolete to you when designing
when we design system we use different modeling but what is the limitation of modeling i mean when we can't use behavioral modeling or structural modelling
It might help to explain what you mean by behavioral and structural modeling, and perhaps give an example. Most people think of behavioral modeling as code that cannot readily be synthesized to an implementation, but it also could mean code that could be synthesized, but the structure is not specified. For example, you could write the equation A* B to multiply two numbers, but that does not indicate how the multiplier is implemented.
It might help to explain what you mean by behavioral and structural modeling, and perhaps give an example. Most people think of behavioral modeling as code that cannot readily be synthesized to an implementation, but it also could mean code that could be synthesized, but the structure is not specified. For example, you could write the equation A* B to multiply two numbers, but that does not indicate how the multiplier is implemented.
we can use behavioral modelling for sequential circuits and combinational and structural for combinational circuits
example we can design And gate with behavioral or structure modeling but why we can't use behavioral modeling to design D flip flop